C Captain Chaos Registered User. Local time Today, 07:37 Joined Jul 7, 2003 Messages 26 Jul 14, 2005 #1 It seems you can use ctrl+Tab to step through the pages on a tab control and bypass normal events. Is there a way to stop this?
It seems you can use ctrl+Tab to step through the pages on a tab control and bypass normal events. Is there a way to stop this?
W WayneRyan AWF VIP Local time Today, 07:37 Joined Nov 19, 2002 Messages 7,122 Jul 15, 2005 #2 Captain, Code: Private Sub YourTabControl_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = 9 And Shift = 2 Then KeyCode = 0 Shift = 0 End If End Sub Wayne
Captain, Code: Private Sub YourTabControl_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = 9 And Shift = 2 Then KeyCode = 0 Shift = 0 End If End Sub Wayne
C Captain Chaos Registered User. Local time Today, 07:37 Joined Jul 7, 2003 Messages 26 Jul 18, 2005 #3 Ctrl + Tab under control Thanks for that. My problem resolved after adding the code and setting key preview to yes
Ctrl + Tab under control Thanks for that. My problem resolved after adding the code and setting key preview to yes