3
Answers

syntax of textbox.setbounds()

anil john

anil john

11y
1.8k
1
Give me the syntax of textbox.setbounds() method with an explanation
Answers (3)
2
Prakash Reddy

Prakash Reddy

NA 201 14 8y
In asp.net
put the text box in gridview and bind data to text box and put default enabled="false"; 
in each text box
In c#

private void OnKeyDownHandler(object sender, KeyEventArgs e)   
      {            
if (e.KeyCode == Keys.Enter)
{
//enabletextbox here
//textbox1.enabled="true";
}
   }
0
Joseph K

Joseph K

NA 205 10.4k 8y
Hi Prakash,
               Thanks for your reply.I am using ASP.Net gridview.Is there class is there for keyeventargs?