Hi all! \O
I recently realized that when I link a button to a StripMenu button with following code:
Shortcut set on stripmenu button (example= Alt + F4) performs exact the same expected action.
But when you relocate the mentioned button in a TabControl you should open the corresponded tab and press shortcut buttons otherwise nothing happens. Seems shortcut will be bypassed.
Is there any tabcontrol property to set to "true" to get global shortcut sensitivity ???
I recently realized that when I link a button to a StripMenu button with following code:
Code:
Private Sub ShutdownToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles ShutdownToolStripMenuItem.Click
Shutdown_btn.PerformClick()
End Sub
Private Sub Shutdown_btn_Click(sender As Object, e As EventArgs) Handles Shutdown_btn.Click
End
End Sub
But when you relocate the mentioned button in a TabControl you should open the corresponded tab and press shortcut buttons otherwise nothing happens. Seems shortcut will be bypassed.
Is there any tabcontrol property to set to "true" to get global shortcut sensitivity ???