Progress Monitor for IdealProgrammer.com
Take Swift, Intelligent, Massive, Planned, Loving, Effective (S.I.M.P.L.E.) Action to Transform Self into Ideal
Skip Repetitive Navigational Links
Home
News
Presenters
Register
Contact
Categories
Titles
Converter
Code Samples
C# ASP.NET
C# Console
HTML
JavaScript
SQL Server
VB ASP.NET
VB Console
Please login
VB.NET FormatNumber()
Description:
Illustrates using VB.NET FormatNumber() Code Example.
Example Class:
Public Class clsFormatNumber Public Sub Main() '**************************************************************************************** ' Syntax: FormatNumber (Expression As Object, _ ' NumDigitsAfterDecimal As Integer, _ ' IncludeLeadingDigit As TriState, _ ' UseParensForNegativeNumbers As TriState, _ ' GroupDigits As TriState _ ' ) As String ' ' Returns expression formatted as a number ' ' Expression - Required - Expression to be formatted ' NumDigitsAfterDecimal - Optional - Numeric value indicating how many places are displayed ' to the right of the decimal. Default value is –1, which indicates that the computer's ' regional settings are used. ' IncludeLeadingDigit - Optional. TriState enumeration that indicates whether or not a ' leading zero is displayed for fractional values. ' UseParensForNegativeNumbers - Optional. TriState enumeration that indicates whether ' or not to place negative values within parentheses. ' GroupDigits - Optional. TriState enumeration that indicates whether or not numbers are ' grouped using the group delimiter specified in the computer's regional settings. '**************************************************************************************** Console.WriteLine("Example #1: FormatNumber (Expression As Object," & _ " NumDigitsAfterDecimal As Integer," & _ " IncludeLeadingDigit As TriState," & _ " UseParensForNegativeNumbers As TriState," & _ " GroupDigits As TriState " & _ " ) As String ") Dim dblNumber As Double = -5432.43 ' Returns "(5,432.430)". Console.WriteLine(FormatNumber(dblNumber, 3, , TriState.True, TriState.True)) 'write blank line to make output easier to read Console.WriteLine() 'Prevent console from closing before you press enter Console.ReadLine() End Sub End Class
Example Module:
Module Module1 Sub Main() Dim myclsFormatNumber As New clsFormatNumber myclsFormatNumber.Main() End Sub End Module
Home
News
Presenters
Register
Contact
Categories
Titles
Converter
Code Samples
C# ASP.NET
C# Console
HTML
JavaScript
SQL Server
VB ASP.NET
VB Console