SIMIN Posted April 21, 2008 Posted April 21, 2008 How can I format a number like 12345 to > 12,345 in .NET? Quote
techmanbd Posted April 21, 2008 Posted April 21, 2008 dim intNum as integer = 12345 dim strNumber as string = intNum.ToString("##,###") Quote Live as if you were to die tomorrow. Learn as if you were to live forever. Gandhi
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.