|
-
Dec 29th, 1999, 08:49 PM
#1
Thread Starter
New Member
I just need to know how to clear data in masked box......
4 example:
I fill up my phone number in masked box....
then I save that data..... After I save it...
the data still there..... So I just want 2 know how to clear it.... meaning that how can I clear data in the masked box.
I hope anyone can do me a favour...
tQ...
-Beginner-
-
Dec 29th, 1999, 09:40 PM
#2
Try this:
Code:
Private Sub Text1_LostFocus()
'Store Information
Text1.Text = ""
End Sub
------------------
Boothman
There is a war out there and it is about who controls the information, it's all about the information.
-
Dec 29th, 1999, 11:48 PM
#3
Member
Clear mask first, then clear text.
MaskEdBox1.Mask = ""
MaskEdBox1 = ""
MaskEdBox1.Mask = "(###)###-####"
Joon
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|