Hi,

Using a SSTab control and I want to switch from Tab1 to Tab0 without using the mouse.

How can I tel VB to switch from Tab1 to Tab0 if I'm pressing the Shift+Tab keys.

It's easy done for Tab0 to Tab1 buy putting code in the last controls
Validate event of tab0:
VB Code:
  1. Private Sub Text_Validate(Cancel As Boolean)
  2.  
  3.     SSTab1.Tab = 1
  4.  
  5. End Sub

So now I'm on the first control of Tab1 and I want too Tab backwards. Any ideas will be great

Thanks
Darren