Dec 23, 2003 #1 johnvai IS-IT--Management Joined Oct 4, 2003 Messages 127 Location LB Dear Friends: Usually if i want to clear a tetbox I do text1.text= "" but in a maskedbox writing MaskedBox1.text= "" gives me error. Any tip?
Dear Friends: Usually if i want to clear a tetbox I do text1.text= "" but in a maskedbox writing MaskedBox1.text= "" gives me error. Any tip?
Dec 23, 2003 #2 MagnaRider MIS Joined Dec 23, 2003 Messages 6 Location US '-- CLEAR THE MASKEDBOX MaskEdBox1.Mask = "" MaskEdBox1.Text = "" MaskEdBox1.Mask = "###-####" Upvote 0 Downvote
'-- CLEAR THE MASKEDBOX MaskEdBox1.Mask = "" MaskEdBox1.Text = "" MaskEdBox1.Mask = "###-####"
Dec 23, 2003 #3 UncleT Programmer Joined Sep 26, 2001 Messages 133 Location US try the following. text1.mask = "" text1.text = "" text1.mask = [original mask] Unclet Upvote 0 Downvote
try the following. text1.mask = "" text1.text = "" text1.mask = [original mask] Unclet
Dec 23, 2003 #4 UncleT Programmer Joined Sep 26, 2001 Messages 133 Location US Sorry, MagnaRider beat me to it. UncleT Upvote 0 Downvote
Dec 23, 2003 Thread starter #5 johnvai IS-IT--Management Joined Oct 4, 2003 Messages 127 Location LB Thanks Friends for the help! Upvote 0 Downvote