____ property is used to lock a textbox to enter data.
Answers were Sorted based on User's Feedback
Answer / ranjitha
TextBox.Readonly=True
This property is used to lock the text box to enter data.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / kosil
textbox1.readonly=true;// to unlock textbox
textbox1.readonly=false;// to lock textbox
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / anantha
textbox1.Enabled=true //to enable lock//
textbox1.Enabled=false // to disable lock//
(or)
readonly="true"
readonly="false"
| Is This Answer Correct ? | 2 Yes | 0 No |
What are the three states set in a checkstate property?
Can you create a tabletype of recordset in Jet - connected ODBC dbengine?
What is form technology?
What is the difference between a document and a form?
What is a windows forms application?
Explain how many number of events does the timer controls?
For a server control, you need to have same properties like color maxlength, size, and allowed character throughout the application. How do you handle this?
What is a windows based application?
How many navigational features are provided by visual studio.net ide?
Which controls have refresh method?
What is difference between winforms and windows forms?
Name the event that enables the user to prevent shifting of focus from control until all the validation rules have been met.