Microsoft
Software
Hardware
Network
Question : vb.net Insert comma every 3 characters
Hello folks, I need your help with something easy but I dont know how to do it.
I've this number 1000000 and I want to convert it to: 1000000 or 500000 to 500.000
Thanks for your help
Answer : vb.net Insert comma every 3 characters
It should also work:
C# :
int num = 1004055000;
string s = num.ToString("#,###");
VB.N
ET :
Dim number As Integer = 100055034
Dim s As String = number.ToString("#,###")
Random Solutions
Outlook.nk2 not being updated
Can Sharepoint 2010 do this?
Cell Masking in Excel
Is it safe to move Exchange log files to another drive directory?
Connecting to a Window Server 4.0 domain with a Windows 7 workstation
Spanning Tree Root
DPM Agent Installer failed with errorcode -0x80004005
Report Requesting Parameter Value
Rotate a layer with Graphics32 using handle (grip)
Can i group by a concat column in SQL?