Mar 15, 2003 #1 pingpang Programmer Feb 1, 2003 22 PH Good day to you! I can't figure how to format a 1000 into 1,000.00/1,000 in a textbox. If you do, please help me. thanks!
Good day to you! I can't figure how to format a 1000 into 1,000.00/1,000 in a textbox. If you do, please help me. thanks!
Mar 15, 2003 #2 vbkris Programmer Jan 20, 2003 5,994 IN i beleive there is a format function for this. Upvote 0 Downvote
Mar 15, 2003 #3 DrJavaJoe Programmer Oct 3, 2002 2,143 US Start with something like this in the change event. Text1.Text = Format(Text1.Text, "#,###.00" Text1.SelStart = Len(Text1.Text) Upvote 0 Downvote
Start with something like this in the change event. Text1.Text = Format(Text1.Text, "#,###.00" Text1.SelStart = Len(Text1.Text)
Mar 16, 2003 Thread starter #4 pingpang Programmer Feb 1, 2003 22 PH thanks for the response....YOur (DrJavaJoe) code is just what I need.. Maybe I have other follow up questions similar to what i ask, I just post it in this thread. Hope you guys can check it. thanks! Upvote 0 Downvote
thanks for the response....YOur (DrJavaJoe) code is just what I need.. Maybe I have other follow up questions similar to what i ask, I just post it in this thread. Hope you guys can check it. thanks!
Mar 16, 2003 #5 ufobaby MIS Sep 25, 2001 238 US hi , why not try masked edit control .. ??? have u tried it ?? Niraj Upvote 0 Downvote