Apr 21, 2008 #1 S SIMIN Regular Joined Mar 10, 2008 Messages 92 How can I format a number like 12345 to > 12,345 in .NET?
Apr 21, 2008 #2 T techmanbd Junior Contributor Joined Sep 10, 2003 Messages 397 Location Burbank, CA Visual Basic: dim intNum as integer = 12345 dim strNumber as string = intNum.ToString("##,###")