Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I'm trying to add commas to the numbers in my vb6 app... like: 1,000 or 34,200 etc. Is there an easy way to do this?
You can format the the number as a String with commas using:
Format( _expression_, "###,###,###")
The documentation is here[^]. RageInTheMachine9532