5 Answers, 1 is accepted
0
Hi Erin,
Thank you for contacting us.
How do you set the value in the maskeditbox? Using the Value property or the Text property? The right way is to use the Value property of the control.
I'm looking forward to your reply.
Regards,
Boyko Markov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Thank you for contacting us.
How do you set the value in the maskeditbox? Using the Value property or the Text property? The right way is to use the Value property of the control.
I'm looking forward to your reply.
Regards,
Boyko Markov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0

Erin
Top achievements
Rank 1
answered on 03 Mar 2009, 05:50 PM
I was using the Text property, switching it to the Value property has cleared up this issue.
0

Bob
Top achievements
Rank 1
answered on 01 Jun 2009, 07:10 PM
I am experiencing similar behavior but my MaskedEditBox is datetime and when I try to write .value instead of .text nothing is displayed.
0

Bob
Top achievements
Rank 1
answered on 01 Jun 2009, 08:23 PM
Modified my code from:
txtDateOfBirth.Value = ClientDataTable.Rows(0).Item("DateOfBirth")
To:
txtDateOfBirth.Value = Convert.ToDateTime(ClientDataTable.Rows(0).Item("DateOfBirth"))
Works fine :)
txtDateOfBirth.Value = ClientDataTable.Rows(0).Item("DateOfBirth")
To:
txtDateOfBirth.Value = Convert.ToDateTime(ClientDataTable.Rows(0).Item("DateOfBirth"))
Works fine :)
0
Hello guys,
I am glad that everything works fine now! If you have further questions, do not hesitate to contact us.
Sincerely yours,
Boryana
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
I am glad that everything works fine now! If you have further questions, do not hesitate to contact us.
Sincerely yours,
Boryana
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.