November 26th, 2011, 04:08 AM
#1
How i prepare a Textbox for date input?
How i prepare a Textbox for date input?
I try using the format function:
Me.txtFechadeEntrada.MaxLength = 8
mascarafechaentrada = Format(Me.txtFechadeEntrada.Text, "##/##/##")
And on saveclick this ,I need save the data to a text file with a specific format I delete the /.
mascarafechaentrada = Format(Me.txtFechadeEntrada.Text, "######")
Me.txtFechadeEntrada.MaxLength = 6
But don't work because the user can type this 11112//2.
My last choice is to use date picker control or textbox=format (Date,yy/mm/dd).
But I prefer the user to type the date in the text box.
Sorry for my English
Any help is very appreciated
Last edited by pcfry; November 26th, 2011 at 04:13 AM .
November 26th, 2011, 09:22 AM
#2
Re: How i prepare a Textbox for date input?
You may want to use the mask edit box
Always use [code][/code] tags when posting code.
November 26th, 2011, 12:18 PM
#3
Re: How i prepare a Textbox for date input?
The maskeditbox is another control like the date picker. I looking for a way to use a text box.
You know a way to use a maskedit in a text box?
Thanks for answer anyway
November 26th, 2011, 01:04 PM
#4
Re: How i prepare a Textbox for date input?
Use a HIDDEN TextBox to format items.
November 26th, 2011, 11:34 PM
#5
Re: How i prepare a Textbox for date input?
Ok let try that .
I will post
Tags for this Thread
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
Bookmarks