____ property is used to lock a textbox to enter data.

Answers were Sorted based on User's Feedback



____ property is used to lock a textbox to enter data...

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

____ property is used to lock a textbox to enter data...

Answer / sanjeev

textBox1.Enabled=true;
textBox1.Enabled=false;

Is This Answer Correct ?    6 Yes 0 No

____ property is used to lock a textbox to enter data...

Answer / kosil

textbox1.readonly=true;

Is This Answer Correct ?    5 Yes 0 No

____ property is used to lock a textbox to enter data...

Answer / kosil

textbox1.readonly=true;// to unlock textbox
textbox1.readonly=false;// to lock textbox

Is This Answer Correct ?    5 Yes 1 No

____ property is used to lock a textbox to enter data...

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

Post New Answer

More Dot Net WindowsForms Interview Questions

What is an example of form?

0 Answers  


What is the use of form?

0 Answers  


What?s the difference between the System.Web.UI.WebControls.DataGrid and System.Windows.Forms.DataGrid?

1 Answers  


Which property of textbox cannot be changed at runtime?

2 Answers  


How save rerecord in the database?

0 Answers  






Is form action required?

0 Answers  


Name the event that enables the user to prevent shifting of focus from control until all the validation rules have been met.

0 Answers  


Suppose I am implementing one windows form. I am inserting some values into ms access. In that table 5 columns there. But I want to insert three columns only. When I am clicking another button then other two values also insert into that table?

0 Answers  


How insert record in the database?

0 Answers  


How can you pause a timer control?

0 Answers  


Can you create a tabletype of recordset in Jet - connected ODBC dbengine?

0 Answers  


What is form design?

0 Answers  


Categories