Tagged Questions
tmenuitem is a non visual VCL component describing the properties of an item in a menu. It is defined in the Menus.pas unit.
2
votes
2answers
559 views
Creating a Delphi app shortcut with no corresponding menu item
I want to have a shortcut key combination (like Ctrl+Alt+D) in my app to invoke a function, but I don't want the shortcut to appear on any menu. Is it possible to have a shortcut available in your ...
2
votes
2answers
1k views
Delphi: How to Assign an Up Arrow Keyboard Shortcut to Action/MenuItem, and Keep It Actual for Navigating the List Control (ListBox/VTV)?
Please assist me: How to assign an up arrow keyboard shortcut to action or menu item, and keep it actual for navigating the list control (e.g. ListBox/Virtual Treeview/other) at the same time?
...
1
vote
6answers
827 views
Sending WM_COMMAND to a TMenuItem
In my Delphi form's OnShow method, I determine that a dialog must be opened automatically once the form is opened - and I should be able to do this by simulating a click on a menuitem.
However, ...
0
votes
1answer
119 views
In Lazarus, how to check whether a MenuItem has a Bitmap assigned?
I wrote some Lazarus code that loops through the menu items of the main menu and needs to see whether there's a bitmap assigned to each menu item.
I tried to check with
if Assigned (MenuItem.Bitmap) ...