GetNextControl Method

ChuckMac

Member
Joined
Jun 27, 2007
Messages
6
Programming Experience
10+
I have seen several threads regering to GetNextControl.
I can't find it. I am using VS 2005, VB.NET 2005
my app inherits System.Web.UI.Page
when I type Me. intellisense finds other .Get things but not GetNextControl

I'm trying to solve that EnterKey to TabKey problem that plagues VB.NET

Thanks..
Chuck
 
Control.GetNextControl method is for Windows Forms, not Web Forms. Not really sure what you mean by this statement: "EnterKey to TabKey problem that plagues VB.NET"
 
EnterKey to TabKey

I have read various solutions for capturing the <Enter> and execute <Tab>
I took over an application from the sidmissed programmer. Lots of data fields.
The fields tab one to the next just fine, but the operators forget and press the <Enter> and bingo saves the data and moves to the next screen.

I would like to disable the enter key to the degree that when they press the enter key it acts like the Tab key.
 
Back
Top