Mar 15, 2003 #1 pingpang Programmer Joined Feb 1, 2003 Messages 22 Location 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 Joined Jan 20, 2003 Messages 5,994 Location IN i beleive there is a format function for this. Upvote 0 Downvote
Mar 15, 2003 #3 DrJavaJoe Programmer Joined Oct 3, 2002 Messages 2,143 Location 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 Joined Feb 1, 2003 Messages 22 Location 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 Joined Sep 25, 2001 Messages 238 Location US hi , why not try masked edit control .. ??? have u tried it ?? Niraj Upvote 0 Downvote