Jan 11, 2003 #1 tkoehn ISP May 24, 2001 26 US Slowling moveing into the .NET world. I am unable to figure out how to set focus from one text box to another text box. Any help or sample code would be greatly appreciated. -tony-
Slowling moveing into the .NET world. I am unable to figure out how to set focus from one text box to another text box. Any help or sample code would be greatly appreciated. -tony-
Jan 13, 2003 #2 bassguy Programmer Jun 21, 2001 336 US Hi, did you try help at all???? textbox1.focus puts the focus on textbox1 Bassguy Upvote 0 Downvote
Jan 13, 2003 Thread starter #3 tkoehn ISP May 24, 2001 26 US Does that work with VB.NET?? I couldn't get it to work right. I ended up using the send tabkey command. tony Upvote 0 Downvote
Does that work with VB.NET?? I couldn't get it to work right. I ended up using the send tabkey command. tony
Jan 14, 2003 #4 jambu Programmer Nov 20, 2002 185 GB tkoehn: The Focus method is all you need. TextBox1.Focus() 'will set the focus to that control Look for "Focus Method" in the help and it will also give you a list of controls that it does not work for. Upvote 0 Downvote
tkoehn: The Focus method is all you need. TextBox1.Focus() 'will set the focus to that control Look for "Focus Method" in the help and it will also give you a list of controls that it does not work for.