<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Rank

"MathFuncsLib.h" - Header File of Static Library
How to create a C++ Header File for a Static Library? Using a static library (.lib file) is a great way to reuse code. Rather than re-implementing the same routines in every app that requires the functionality, you write them one time in a static library and then reference it from the apps. Code lin...
2023-10-15, 1414🔥, 0💬

"MathFuncsLib.cpp" - Build Static Library
How to build a C++ static library with Visual Studio command tools? The next step to create a static library is to create library source code and build the library .lib file as shown in this tutorial: 1. Create the C++ source file, MathFuncsLib.cpp, with a text editor: // MathFuncsLib.cpp // compile...
2023-10-15, 1522🔥, 0💬

"MyExecRefsLib.cpp" - Reference Static Library
How to create and build a C++ application that reference a static library? I have the .h and .lib files of the library. If you want to use a static library provided by others, you can follow this tutorial: 1. Create the C++ source file, MyExecRefsLib.cpp, with a text editor. Remember to include the ...
2023-10-15, 1368🔥, 0💬

Sending FTP Request with urllib.request.urlopen
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports anonymous access, you can send an FTP request to retrieve a directory list, or download a file using the urllib.request.urlopen() function: Here is a Python example on how to get a directory list from an...
2023-10-06, 4908🔥, 1💬

💬 2023-10-06 Uriel Adonai JimĂ©nez Leal: Thanks!

Attributes Required by HTML Elements
What Is a Required Attribute in an HTML element? A required attribute is an attribute required by the HTML element. When you write an HTML element, you must include all attributes required by this element in the opening tag. Optional attributes can be omitted in the opening tag. Here are some exampl...
2023-09-26, 1187🔥, 1💬

Quoting HTML Element Attribute Values
How To Quote Element Attribute Values Properly? You know that attribute values must be quoted. But how to attribute values properly? Here are some basic rules you should remember: An attribute value must be quoted. An attribute value can be quoted with double quotes as "...". An attribute value can ...
2023-09-23, 1278🔥, 0💬

Ampersand Sign in HTML Attribute Values
How To Write Ampersand Sign in Attribute Values? If you need enter an ampersand sign in an attribute value, you can not enter it directly. You must replace it with entity: &amp;amp;. Here are some interesting examples of quoted attribute values: &lt;img src="tt.gif" alt="Tutorials &amp;a...
2023-09-23, 1237🔥, 0💬

Predefined HTML Attribute Values
What Are Predefined Attribute Values for an HTML attribute? Some HTML attributes have predefined values. If an attribute has predefined values, you must use one of the predefined values. For example, attribute "valign" of element "td" has 4 predefined values "baseline", "bottom", "middle", and "top"...
2023-09-23, 1224🔥, 0💬

Attribute Name Case Sensitive
Is Attribute Name Case Sensitive? Yes, XHTML attribute names are case sensitive. You must write all attribute names in lower case letters. Here are some valid and invalid attribute names: &lt;a href="http://dev.fyicenter.com "&gt;- Valid attribute name. &lt;a HREF="http://dev.fyicenter.c.. .
2023-09-23, 1214🔥, 0💬

Create Visual Basic Project in Visual Studio 2017
How to Create a Visual Basic Program Project with Visual Studio 2017? If you are new to Visual Studio 2017, you can follow tutorial to create your first Visual Basic program project in Visual Studio 2017. 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt; New &...
2023-09-16, 2130🔥, 0💬

"MathLibrary.h" - Header File of DLL Library
How to create a C++ Header File for DLL (Dynamic Link Library)? Using a Dynamic Link Library (DLL) is a great way to reuse code. Rather than re-implementing the same routines in every program that you create, you write them one time and then reference them from apps that require the functionality. B...
2023-09-16, 1877🔥, 0💬

WPF App with VB Code in Visual Studio 2017
How to build a WPF application with VB code to control its behavior in Visual Studio 2017? After you have created your WPF application with XAML to define its UI elements, you can follow this tutorial to add VB code to control its behavior in Visual Studio 2017: 1. Create a "WPF App (.NET Framework)...
2023-09-16, 1617🔥, 0💬

WPF App with VB and XAML in Visual Studio 2017
How to build a WPF application with VB and XAML in Visual Studio 2017? If you want to build a WPF (Windows Presentation Foundation) application with VB and XAML in Visual Studio 2017, you can follow this tutorial 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt; ...
2023-09-16, 1527🔥, 0💬

Release Build of VB Code in Visual Studio 2017
How to make a release build of the final executable code of my VB application in Visual Studio 2017? If you want to make a final release build of your VB application in Visual Studio 2017, you can follow this tutorial: 1. Click "Build &gt; Clean Solution" menu. You see debugging files removed. 2...
2023-09-16, 1307🔥, 0💬

JSON-stringify-Filter.html - JSON.stringify() Array Replacer
How to write a replacer array to filter values while the JSON.stringify() function is generating the JSON text string? If you call JSON.stringify() with an array as the replacer, the array elements will be used to filters to select object properties with keys match one of array elements. All other o...
2023-09-07, 2052🔥, 0💬

Call JSON.parse() with Reviver Function
What is a reviver function that you can provide the JSON.parse() function call? The reviver function is an event handler function that is called repeatedly whenever a JSON element is parsed during the execution of the JSON.parse() function. The reviver function must defined with the following signat...
2023-09-07, 1645🔥, 0💬

JSON Text String Example
Where to get a simple example of JSON text string? You can go to JSON at Wikipedia to get the following JSON text string example: { "firstName": "John", "lastName": "Smith", "isAlive": true, "age": 25, "address": { "streetAddress": "21 2nd Street", "city": "New York", "state": "NY", "postalCode": "1...
2023-09-07, 1592🔥, 0💬

JSON-parse-Error.html - JSON.parse() Errors
How to catch errors when calling the JSON.parse() function in JavaScript? If you want to catch errors when calling the JSON.parse() function in JavaScript, you can follow this tutorial: 1. Use the "try {...} catch {...}" block to catch the error object throw from the JSON.parse() function, as shown ...
2023-09-07, 1574🔥, 0💬

JSON-stringify-Transformed.html - JSON.stringify() Value Transformed
How to write a replacer function to transform values while the JSON.stringify() function is generating the JSON text string? Below is a good example on using a replacer function with the JSON.stringify() call to transform output values: &lt;!-- JSON-stringify-Transformed.htm lCopyright (c) FYIce...
2023-09-07, 1152🔥, 0💬

Validate Azure AD v2 id_token Signature
How to validate the id_token signature received from Azure AD v2.0 authentication response? You can use some existing libraries to perform the Azure AD "id_token" signature validation using libraries of different programming languages as suggested in "Azure Active Directory access tokens" article" ....
2023-09-06, 3157🔥, 1💬

💬 2023-09-06 rjurado01: You safe my life.

XML to JSON Conversion
Where to find tutorials on XML to JSON Conversion? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on XML to JSON Conversion: Issues of Converting XML to JSON Mapping XML Attributes to JSON Values Mapping XML Simple Elements to JSON Values Mapping...
2023-09-05, 2303🔥, 0💬

JSON Validation at jsonlint.com
How to use the JSON Validation Tool at jsonlint.com? If you want to try the JSON Validation Tool at jsonlint.com, you can follow this tutorial: 1. Go to the The JSON Validator page at jsonlint.com. 2. Enter the following JSON text string in the text area: { "firstName": "John", "lastName": "Smith", ...
2023-09-05, 1641🔥, 0💬

JSON to XML Conversion at jsonformatter.org
How to use the JSON to XML Conversion Tool at jsonformatter.org? If you want to try the JSON to XML Conversion Tool at jsonformatter.org, you can follow this tutorial: 1. Go to the JSON to XML Conversion Tool page at jsonformatter.org. 2. Enter the following JSON value in the text area: ["Hello", 3....
2023-09-05, 1551🔥, 0💬

JSON-stringify-space.html - JSON.stringify() Friendly Spaced
How to call the JSON.stringify() function with space argument to generate JSON text strings indented with friendly spaces? If you call JSON.stringify() without the "space" argument, the JSON text string will be generated in a single line, with no line breaks and space indentions. If you want to brea...
2023-09-05, 1310🔥, 0💬

<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Rank