____ 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 |
How many system controls are available ?
Which event occurs when a user drags an item in a treeview or listview control?
What is the max size of textbox?
How will calculated the net amount in tax add like total net amount = LT+ST+CESS+amount 2500 = 10%+12.5%+5.15%+amount? kindly please explain what type of formula we apply in software? Tushar
Where is system windows forms dll?
how to create a set up in vb.net for desktop application please say me steps with examples
Which C# access modifier helps to limit the accessibility of a class member within the same assembly?
Explain something about crystal report in brief?
How to get records from a database?
What is form record?
Explain about crystal report in brief?
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?