<< < 43 44 45 46 47 48 49 50 51 52 53 > >>   Sort: Rank

JSON Type Unique Identifications
How to assign a unique identification to a JSON type in JSON Schema? Using "definitions" and "$ref" properties allows to define JSON types and reference them internally in the same JSON schema or externally in another JSON schema. You can also assign a unique identification to a JSON type with the "...
2017-08-20, 1426🔥, 0💬

Convert XML to JSON with PHP
How to convert an XML document to a JSON text string with PHP language? Currently, there is no built-in function or any standard extension that you can use to convert an XML document to a JSON text string. But you can use the following PHP example, xml_to_json_converter.php, to convert an XML docume...
2017-08-17, 2032🔥, 0💬

Mapping XML Elements with Mixed Contents to JSON Values
What is the standard to map XML elements with mixed contents to JSON values? There seems to be no industry standard on how to map XML elements with mixed contents to JSON values. But there are some commonly used conventions: 1. Converting text content in an XML complex element to a JSON object prope...
2017-08-17, 1553🔥, 0💬

FYIcenter XML to JSON Converter
FYIcenter XML to JSON Converter is an online tool that converts an XML document to a JSON text string.
2017-08-16, 490🔥, 0💬

"MyLib.vb" - VB Class and Library
How to create a VB class and build it into a library? If you want to create a VB class and build it into a library, you can follow this tutorial: 1. Create the class source code file, MyLib.vb, with a text editor: ' MyLib.vb ' Copyright (c) FYIcenter.com Public Class MyLib Public Shared Sub PrintHel...
2017-08-13, 2172🔥, 0💬

"MyLibApp.vb" - Call VB Class from Library
How to call a function from a VB class provided in a library? If you want to call a function from a VB class provided in a library, you can follow this tutorial: 1. Reference the shared function with the class name prefix: MyLib.PrintHello(); 2. See the following full source code example, MyLibApp.v...
2017-08-13, 2119🔥, 0💬

Create Visual C# Project in Visual Studio 2017
How to Create a Visual C# Program Project with Visual Studio 2017? If you are new to Visual Studio 2017, you can follow tutorial to create your first Visual C# program project in Visual Studio 2017. 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt; New &gt; P...
2017-08-13, 2043🔥, 0💬

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

First Visual C# Program in Visual Studio 2017
Where to find tutorials on writing first Visual C# 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 C# Program in Visual Studio 2017? Create Visual C# Project in Visual Studio 2017 WPF App with...
2017-08-13, 1630🔥, 0💬

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

WPF App with VC# Code in Visual Studio 2017
How to build a WPF application with VC# 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...
2017-08-08, 1781🔥, 0💬

Windows Forms App with VC# in Visual Studio 2017
How to build a Windows Forms application with VC# code in Visual Studio 2017? If you want to build a Windows Forms application with VC# code in Visual Studio 2017, you can follow this tutorial: 1. Click "File &gt; New &gt; Project" menu. You see the new project box showing up. 2. Select "Win...
2017-08-08, 1621🔥, 0💬

Console App with VC# Code in Visual Studio 2017
How to build a console application with Visual C# code in Visual Studio 2017? If you want to build a console application with Visual C# code in Visual Studio 2017, you can follow this tutorial 1. Start Visual Studio 2017 with .NET development environment. 2. Click "File &gt; New &gt; Project...
2017-08-08, 1607🔥, 0💬

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

"MyLib.cs" - VC# Class and Library
How to create a VC# class and build it into a library? If you want to create a VC# class and build it into a library, you can follow this tutorial: 1. Create the class source code file, MyLib.cs, with a text editor: // MyLib.cs // Copyright (c) FYIcenter.com using System; namespace fyi { public clas...
2017-08-06, 2452🔥, 0💬

"MyLibApp.cs" - Call VC# Class from Library
How to call a function from a VC# class provided in a library? If you want to call a function from a VC# class provided in a library, you can follow this tutorial: 1. Reference the shared function with the class name prefix: MyLib.PrintHello(); 2. See the following full source code example, MyLibApp...
2017-08-06, 2264🔥, 0💬

Commonly Used HTML Inline Elements
What Are Commonly Used Inline Elements? Here are some commonly used inline elements: strong - Defining text with a strong emphasis. em - Defining text with an emphasis. code - Defining computer code text. sub - Defining a subscript text. sup - Defining a superscript text. del - Defining text to be t...
2017-08-03, 1614🔥, 0💬

Introduction of HTML Inline Elements
What Are XHTML Inline Elements? Inline elements are XHTML elements that can be used together with character data to form lines of paragraph blocks. Here are some basic rules about inline elements: Inline elements are usually used as sub-elements of block elements. Some inline elements have empty con...
2017-08-03, 1576🔥, 0💬

HTML In-line Elements and Tags
Where to find tutorials of introduction to XHTML 1.0 In-line Elements and Tags? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML In-line Elements and Tags. Clear answers are provided with tutorial exercises on inline element...
2017-08-03, 1522🔥, 0💬

HTML 'hr' Tags/Elements
What Are "hr" Tags/Elements? A "hr" element is a block level element that can be used directly as a sub-element in the body element. You can use "hr" elements to specify horizontal rulers. Here are basic rules about "hr" elements: "hr" elements can only have empty contents. "hr" elements are block e...
2017-08-03, 1444🔥, 0💬

Other HTML Block Elements
What Are Other HTML Block Elements? Other block elements that are not covered in this collection: ul, ol, dl - Specifying lists of items. table - Specifying tables of columns and rows. form - Specifying forms with input fields. script - Specifying client-side script codes. div - Specifying structura...
2017-08-03, 1441🔥, 0💬

Introduction of HTML Element Content Syntax
Where to find tutorials of introduction to HTML element content syntax and basics rules? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML element content syntax and basics rules. Clear answers are provided with tutorial exer...
2017-07-30, 1501🔥, 0💬

HTML Element Content Models
What Are the HTML Element Content Models? There are 4 content models defined for HTML elements: 1. EMPTY - No content. Nothing between the opening tag and the closing tag. For example: &lt;br/&gt; - "br" element has no content. &lt;br&gt;&lt;/br& amp;gt;- Same as above. &lt;m...
2017-07-30, 1456🔥, 0💬

The 'checked' Attribute of some HTML Elements
What Is Wrong with My "checked" Attribute Values? Attribute "checked" is an optional attribute for HTML element "input". In XHTML specification, attribute "checked" has only one predefined value: "checked". However, in HTML specification, attribute "checked" requires no value. If you are converting ...
2017-07-30, 1373🔥, 0💬

<< < 43 44 45 46 47 48 49 50 51 52 53 > >>   Sort: Rank