-
Jul 30th, 2024, 04:07 PM
#1
Thread Starter
Fanatic Member
[RESOLVED] How do I assign a keyboard shortcut to a menu item?
Does tB's IDE provide a menu editor, like VB6, where I can assign keyboard shortcuts for menu items? For example, I want to assign CTRL-S to a Save menu item. I'm not seeing it.
Last edited by AAraya; Jul 31st, 2024 at 09:06 AM.
-
Jul 30th, 2024, 06:19 PM
#2
Lively Member
Re: How do I assigne a keyboard shortcut to a menu item?
Not yet implemented.
Might be one you need to edit in VB6 for now. Or edit the form file manually. In VB6 it looks like:
Code:
Begin VB.Menu mnuTestMenu
Caption = "TestMenu"
Begin VB.Menu mnuTestSubMenu
Caption = "TestSubMenu"
Shortcut = ^D
End
End
-
Jul 31st, 2024, 09:04 AM
#3
Thread Starter
Fanatic Member
Re: How do I assigne a keyboard shortcut to a menu item?
Thanks! You know, I never noticed the property page for the menu. I guess I'm so used to the VB6 paradigm that I was never expecting that.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|