CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: TAB TO PREVIOUS

  1. #1
    Join Date
    Jan 2000
    Location
    Pennsylvania, United States
    Posts
    106

    TAB TO PREVIOUS

    I am trying to accommodate a request that users would like to utilize a (shift + tab) combination to move to the previous control or field on the form.

    Does anyone have any examples on how to handle this.

    The only thing I can come up with is holding a variable through out the scope of the form. Each object will need a keypress event to see if the shift key is followed by the tab key.... Let me know if there is something easier.




  2. #2
    Join Date
    Feb 2000
    Location
    Ireland
    Posts
    808

    Re: TAB TO PREVIOUS

    If you set the tabindex of your controls up properly then this will work by default


  3. #3
    Join Date
    Jan 2000
    Location
    Pennsylvania, United States
    Posts
    106

    Re: TAB TO PREVIOUS

    Thanks I found the Shift + Tab does this. I was trying Ctrl + Tab



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured