I have a textbox with "10000" i want to format it to "10,000.00". How i can make it in vb.net ..
hery 0 Light Poster
Recommended Answers
Jump to PostDim n As Integer = 10000 TextBox1.Text = n.ToString("##,##,###.00")
Jump to Postyeah.. You right.. But i want to 10,000.00.. How can make it.. Not depending where i place.. Please.... I stuck ...
Unless I did not miss something, I found adatapost answer is what you want
Dim n As Integer = 12345 TextBox1.Text = n.ToString("###,###.00") MsgBox("Next") Dim d …
All 7 Replies
kvprajapati 1,826 Posting Genius Team Colleague
hery 0 Light Poster
GeekByChoiCe 152 Practically a Master Poster Featured Poster
sknake 1,622 Senior Poster Featured Poster
hery 0 Light Poster
GeekByChoiCe 152 Practically a Master Poster Featured Poster
samir_ibrahim 58 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.