Tab Index in a Page with User Control.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • aspnetsnake
    New Member
    • Apr 2010
    • 2

    Tab Index in a Page with User Control.

    Hi everyone

    I have a form with a custom control and in that control has an input field and the control lies in the middle of the form, when I tabbed across the form the tab index was behaving strange, can anyone help me on this so that I could set tab index of controls acording to my requirement?

    Thanks
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    In Visual Studio the tab index is under the View menu.
    View | Tab index
    Then click on each item in the order you want them to be used.

    All controls also have a true/false property of "TabStop". Set it to false for all controls that you don't want to be part of the tabbing sequence.

    Comment

    • aspnetsnake
      New Member
      • Apr 2010
      • 2

      #3
      Originally posted by tlhintoq
      In Visual Studio the tab index is under the View menu.
      View | Tab index
      Then click on each item in the order you want them to be used.

      All controls also have a true/false property of "TabStop". Set it to false for all controls that you don't want to be part of the tabbing sequence.
      Thanks for the reply tlhintoq

      I am using VS2005, and I don't see anything like "Tab Index" under the view menu, However I see "Tab Order" but it is disabled.

      Any suggestions?

      Comment

      Working...