Hi,
I have a textbox where i input a date and i have this named as txtdate, so the txtdate Dateformat property = 1
So i would like to use the DblClick property to clear the value i typed in the Txtdate, so i wrote inside the property the following
after i double click on the txtdate, the previous date, got cleared from the txtbox but i got this error "unknown member value"
can you guide me here to get this right ?
Thanks
I have a textbox where i input a date and i have this named as txtdate, so the txtdate Dateformat property = 1
So i would like to use the DblClick property to clear the value i typed in the Txtdate, so i wrote inside the property the following
Code:
This.Value = ''
this.txtdate.DateFormat = 1 && i put this line here to get the " / / " on the txtdate back, after it got cleared but this does not work for me
** what should i do to make the txtdate to get the format as before ?
after i double click on the txtdate, the previous date, got cleared from the txtbox but i got this error "unknown member value"
can you guide me here to get this right ?
Thanks