SSTab

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Shined
    New Member
    • Apr 2008
    • 1

    SSTab

    Hi,
    I am new to this group. i hv a problem with SSTAB in vb6.0. In my SStab there are 8 tabs. i want to activate them via ALT 1( tab1), ALT 2(tab2) etc. It is possible if we are using &1,&2 etc with tab caption. but i dnt wnt to display the tab name with &1 etc.any other way to solve this problem??
  • Killer42
    Recognized Expert Expert
    • Oct 2006
    • 8429

    #2
    I'd guess you could do it by setting the form's KeyPreview property to True, and capturing the keypress you want in the KeyDown or KeyPress event.

    Comment

    • anuragshrivastava64
      New Member
      • Jan 2007
      • 66

      #3
      Originally posted by Shined
      Hi,
      I am new to this group. i hv a problem with SSTAB in vb6.0. In my SStab there are 8 tabs. i want to activate them via ALT 1( tab1), ALT 2(tab2) etc. It is possible if we are using &1,&2 etc with tab caption. but i dnt wnt to display the tab name with &1 etc.any other way to solve this problem??
      Change the caption of the tabs to tab&1 , tab&2 and so on

      Comment

      Working...