how can I disable Ctrl + Tab key for a tabcontrol?
The users can press Ctrl+Tab (or Ctrl+Shift+Tab ) to navigate through the tab pages of a tab control. I'm wondering, is there a way to disable this? or not to let the tab control receive the key combination?
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
just to let you know, I've tried this, aint working:
VB Code:
Private Sub tabWizard_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles tabWizard.KeyDown
If e.Control AndAlso e.KeyCode = Keys.Tab Then
If e.Shift Then
e.Handled = False
Else
e.Handled = False
End If
End If
End Sub
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
hey thanks
I thought there should be a better way, but oh well seems like your way is the only way....
and, I think you should be credited because I never thought of disabling the hotkey in windows... I was just thinking of trapping the keys using keypress and such
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!