|
-
Aug 21st, 2003, 01:10 AM
#1
Thread Starter
Lively Member
Mask Edit Control
How can I reset the text in Mask Edit Control?
for example, I can reset the text in TextBox using TextBox1.ResetText() OR TextBox1.Text = "". But why Mask Edit Control cannot be used?
-
Aug 21st, 2003, 01:50 AM
#2
Member
It didn´t work with maskedit.text="" ?
or maskedit.text=DBNull.Value ?
-
Aug 21st, 2003, 01:56 AM
#3
Thread Starter
Lively Member
yeah, it didn't work, but never mind, I used another way to do this and it worked!!
VB Code:
MaskEditTime.SelStart = 0
MaskEditTime.SelLength = 5
MaskEditTime.SelText = ""
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
|