<< < 3 4 5 6 7 8 9 10 11 12 13 > >>   Sort: Rank

'dict' Literals and Conversions
How to specify "dict" values in Python code? "dict" values can be specified using "dict" literals or the dict() conversion function as shown in this tutorial: 1. "dict" literals in {n1:v1, n2:v2, ...} format as shown below: &gt;&gt;&gt; {"Age":25, "Name":"Joe"} {'Age': 25, 'Name': 'Joe'}...
2023-07-01, 1126🔥, 0💬

Install C++/CLI Support with Visual Studio Installer
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CLI applications. If you want to install "C++/CLI Support" with Visual Studio Installer, you can follow this tutorial: 1. Close "Visual Studio". And run "All Programs &gt; Visual Studio Installer". ...
2023-06-19, 3705🔥, 0💬

Error on Building C++/CLI Programs
Why I am getting "LNK1104: cannot open file 'MSCOREE.lib'" error when building a C++/CLI program? Visual C++ supports the C++/CLI (Common Language Infrastructure) programming language, which has additional types and operators to target the .NET programming model. It is done by using the CLR (Common ...
2023-06-19, 2493🔥, 0💬

"MyLib.lib" - C++ Class and Static Library
How to create a C++ class and build it into a static library? If you want to create a C++ class and build it into a static library, you can follow this tutorial: 1. Create the header file, MyLib.h, with a text editor: // MyLib.h // Copyright (c) FYIcenter.com namespace fyi { class MyLib { public: st...
2023-06-19, 1448🔥, 0💬

"MyLibApp.cpp" - Call C++ Class from Static Library
How to call a function from a C++ class provided in a static library? If you want to call a function from a C++ class provided in a static library, you can follow this tutorial: 1. Specify the namespace of the C++ class: using namespace fyi; 2. Reference the function with the class name prefix: MyLi...
2023-06-19, 1398🔥, 0💬

Build and Run C++/CLI Programs
How to build and run a C++/CLI program with Visual Studio command tools? I have "C++/CLI Support" installed. If you have "C++/CLI Support" installed with Visual Studio, you can follow this tutorial to build and run a C++/CLI program: 1. Enter the C++/CLI program, HelloCLI.cpp with a text editor: // ...
2023-06-19, 1296🔥, 0💬

Expressions, Variables and Assignment Statements
Where to find tutorials on Python Expressions, Variables and Assignment Statements? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Python Expressions, Variables and Assignment Statements: What Is Expression Evaluation of Expressions What Is Va...
2023-06-12, 1392🔥, 0💬

'if ... elif ... else' Conditional Statement Blocks
How to enter "if ... elif ... else" statement blocks in Python code? "if ... elif ... else" statement blocks allow you to execute statement blocks conditionally. When "if ... elif ... else" statement blocks are interpreted, only the first statement block that is associated to a condition returning T...
2023-06-12, 1306🔥, 0💬

Multi-line Statements in Python Code
How to enter a single statement in multiple lines in Python Code? By default, Python uses the end of line to end a statement. So normally, you enter a statement in a single line. But if you have a very long statement, you can enter a single statement in multiple lines in two ways: 1. Explicit line b...
2023-06-12, 1305🔥, 0💬

Comments in Python Code
How to enter comments in Python Code? There is only one way to enter comments in Python code. That is to enter them at the end of any code line preceded by the hash character "#". For example: # this is the first comment x = 1 # and this is the second comment # and now a third!   ⇒ 'if ... elif ... ...
2023-06-12, 1246🔥, 0💬

Basic Structure of Python Code
What is Basic Structure of Python Code? The basic structure of Python code can be described below: A Python code is a sequence of statements and statement blocks. Each statement or statement block in a Python code is executed sequentially one by one. For example, look at the following Python code wi...
2023-06-12, 1152🔥, 0💬

"MathLibrary.cpp" - Build DLL Library
How to build a C++ DLL library with Visual Studio command tools? The next step to create a DLL library is to create library source code and build the library .dll file as shown in this tutorial: 1. Create the C++ source file, MathLibrary.cpp, with a text editor: // MathLibrary.cpp : Defines the expo...
2023-05-31, 1769🔥, 1💬

💬 2022-11-22 Octan: Beauty in simplicity.

What Is .NET Framework
What Is .NET Framework? .NET Framework Microsoft that provides primarily a standard program execution environment and a standard library: Common Language Runtime (CLR) - An application virtual machine that provides services such as security, memory management, and exception handling. Any application...
2023-05-31, 1601🔥, 0💬

First Visual Basic Program in Visual Studio 2017
Where to find tutorials on writing First Visual Basic Program in Visual Studio 2017? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on writing First Visual Basic Program in Visual Studio 2017? Create Visual Basic Project in Visual Studio 2017 WPF...
2023-05-31, 1518🔥, 0💬

"MathClient.cpp" - Reference DLL Library
How to create and build a C++ application that reference a DLL library? I have the .h, .lib and .dll files of the library. If you want to use a DLL library provided by others, you can follow this tutorial: 1. Create the C++ source file, MathClient.cpp, with a text editor. Remember to include the Mat...
2023-05-31, 1406🔥, 2💬

💬 2022-12-03 FYIcenter.com: @Octan, Thanks for the correction.

💬 2022-11-23 Octan: The correct second comment in the source file MathClient.cpp should be: // Compile by using: cl /EHsc MathClient.cpp /link MathL...

Using .NET Framework in Visual Studio
Where to find tutorials on Using .NET Framework in Visual Studio? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using .NET Framework in Visual Studio: What Is .NET Framework Install .NET Framework in Visual Studio Visual Studio 2017 .NET Prog...
2023-05-31, 1307🔥, 0💬

What Is EPUB 2.0 Specification
What Is EPUB 2.0 Specification? EPUB 2.0.1 Specification is the 2.0.1 version of EPUB specification. EPUB 2.0.1 Specification was a maintenance release of EPUB 2. Its development was chartered in 2009, and the final standard was approved by the IDPF Membership as a Recommended Specification in May, ...
2023-05-09, 1969🔥, 0💬

Minimum Requirement of EPUB 2.0.1 File
What Is the minimum requirement of an EPUB 2.0.1 file? If you want to build an EPUB file that meets the minimum requirements of EPUB 2.0.1 specification, you need to prepare the following: 1. A text file called "mimetype" with one line listed below. It specifies the mimetype of an EPUB 2.0.1 book fi...
2023-05-09, 1756🔥, 0💬

Hello-2.0.epub - "container.xml" File
How to create the "container.xml" file of an EPUB 2.0.1 book? The "container.xml" file of an EPUB 2.0.1 book is a required file in the book ZIP container. It specifies a package file of any name, for example: package.opf. Here is the requirement on the "container.xml" file: 1. The "container.xml" fi...
2023-05-09, 1749🔥, 0💬

Hello-2.0.epub - "mimtype" File
How to create the "mimetype" file of an EPUB 2.0.1 book? The "mimetype" file of an EPUB 2.0.1 book is a required file in the book ZIP container. It specifies the mimetype of an EPUB 2.0.1 book file. Here is the requirement on the "mimetype" file: 1. The "mimetype" file must be named as "mimetype". 2...
2023-05-09, 1678🔥, 0💬

'for ... in ... else' Repeating Statement Blocks
How to enter "for ... in ... else" statements block in Python code? "for ... in ... else" statement blocks allow you to execute the main statement block repeatedly. When "for ... in ... else" statement blocks are interpreted, the "for" statement block will be executed repeatedly for each item in the...
2023-05-09, 1204🔥, 0💬

Examples of Invalid JSON Values
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1. Invalid JSON Strings: 'John' - Wrong quotes "John says "Hello!"" - " inside the string must use escape sequence \" 2. Invalid JSON Numbers: $1.00 - Currency sign is now allowed in numbers 99.00 * 0.1...
2023-04-27, 55070🔥, 4💬

💬 2023-04-27 Anton: THANK YOU

💬 2021-08-04 chelseaclark: High Throughput Screening (HTS) is a drug discovery process that allows automated detection of large numbers of chemical and/or ...

'json-to-xml' Azure API Policy Statement
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you to convert the body of the inbound request or outbound response from JSON format to XML format. For example, the following "json-to-xml" policy statement converts the output response from JSON format t...
2023-04-25, 5921🔥, 2💬

💬 2023-04-23 FYIcenter.com: @lynette, maybe you can add an 'xsl-transform' statement to convert the &lt;document> element something else.

💬 2023-04-19 lynette temple: what do i do if i dont need the &lt;document> element?

VB Command Line Compiler in Visual Studio 2017
How to use the VB command line compiler provided by Visual Studio 2017? If you want to use the compile your VB code from the command line, you can follow this tutorial to use the VB command line compiler provided in Visual Studio 2017: 1. Create a simple VB console application program, Hello.vb: Mod...
2023-04-25, 1876🔥, 0💬

<< < 3 4 5 6 7 8 9 10 11 12 13 > >>   Sort: Rank