|
|
|
The String.Format function supports many formatting options, but none allows you to display right-aligned columns of numbers, as in:
1.00 12.00 123.00 1,234.00
However, you can easily create a helper function that works like String.Format, takes an additional length argument, and aligns the result to that length: |
Click here to copy the following block | Function RightFormat(ByVal formatString As String, ByVal length As Integer, _ ByVal value As Object) As String Return String.Format("{0:" & formatString & "}", value).PadLeft(length) End Function |
Here's an example of how you can use the above function: |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|