Tutorial by Topics: form

The Format methods are a set of overloads in the System.String class used to create strings that combine objects into specific string representations. This information can be applied to String.Format, various WriteLine methods as well as other methods in the .NET framework. string.Format(strin...
While most HTML tags are used to create elements, HTML also provides in-text formatting tags to apply specific text-related styles to portions of text. This topic includes examples of HTML text formatting such as highlighting, bolding, underlining, subscript, and stricken text. <abbr>Ab...
Text formatting in markdown usually requires characters at both the beginning and end of the text.
Lambda-List(format DESTINATION CONTROL-STRING &REST FORMAT-ARGUMENTS)DESTINATIONthe thing to write to. This can be an output stream, t (shorthand for *standard-output*), or nil (which creates a string to write to)CONTROL-STRINGthe template string. It might be a primitive string, or it might con...
As with other relational database systems, SQL Server exposes metadata about your databases. This is provided through the ISO Standard INFORMATION_SCHEMA schema, or the SQL Server-specific sys catalog views.
Xamarin.Forms makes it possible to create iOS, Android, and Windows apps with large amounts of shared code, including UI code or XAML UI markup. App pages and views are mapped to native controls on each platform, but can be customized to provide platform-specific UI or to access platform-specific ...
Rotate Transform transform: rotate(<angle>) Translate Transform transform: translate(<length-or-percentage> [, <length-or-percentage>]?) transform: translateX(<length-or-percentage>) transform: translateY(<length-or-percentage>) Skew Transform transform: skew(&...
Windows Forms ("WinForms" for short) is a GUI class library included with the .NET Framework. It is a sophisticated object-oriented wrapper around the Win32 API, allowing the development of Windows desktop and mobile applications that target the .NET Framework. WinForms is primarily eve...
When storing and transforming data for humans to see, string formatting can become very important. Python offers a wide variety of string formatting methods which are outlined in this topic. "{}".format(42) ==> "42" "{0}".format(42) ==> "42" &quo...
Profiling code is a way to avoid the dreaded practice of "premature optimization", by focusing the developer on those parts of the code that actually justify optimization efforts. MATLAB documentation article titled "Measure Performance of Your Program".
In order to group input elements and submit data, HTML uses a form element to encapsulate input and submission elements. These forms handle sending the data in the specified method to a page handled by a server or handler. This topic explains and demonstrates the usage of HTML forms in collecting an...
Meta tags in HTML documents provide useful information about the document including a description, keywords, author, dates of modifications and around 90 other fields. This topic covers the usage and purpose of these tags. <meta name="metadata name" content="value"> ...
JavaScript, like any language, requires us to be judicious in the use of certain language features. Overuse of some features can decrease performance, while some techniques can be used to increase performance. Remember that premature optimization is the root of all evil. Write clear, correct c...

Page 1 of 10