Dec 23, 2003 #1 johnvai IS-IT--Management Oct 4, 2003 127 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 Dec 23, 2003 6 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 Sep 26, 2001 133 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 Sep 26, 2001 133 US Sorry, MagnaRider beat me to it. UncleT Upvote 0 Downvote
Dec 23, 2003 Thread starter #5 johnvai IS-IT--Management Oct 4, 2003 127 LB Thanks Friends for the help! Upvote 0 Downvote