I have a TextBox
control and want to be able to copy content of TextBox
.
Properties of TextBox
look like this;
textBox1.Enabled = false;
textBox1.ReadOnly = false;
I cannot copy content of textBox1 even though ReadOnly property is false.
Is there any suggestion?