05-10-2024 02:01 PM
I know this is VERY simple, however, I can't figure it out.
I'm trying to re-create this Application from scratch.
How are the Right-click menu items created?
HELP
Keith
05-10-2024 03:33 PM
To edit, make sure you right-click the very edge of the array, then select Advanced -> Run-Time Shortcut Menu-> Edit:
To activate anything you add to the menu, create an event structure, then create a case for the array, then the shortcut menu, then the appropriate sub-event:
"App" is for anything built-in. The one with the question mark allows you to cancel the built-in functionality.
"User" would be for anything you add to the menu manually.
05-10-2024 04:22 PM
Kyle, thanks for the suggestions, however, I couldn't get to the "Insert Element Before" and "Delete Element" from the right-click menu while the application is running.
Can you please help me create another Array with another right-click menu with any items?
Keith
05-11-2024 01:13 AM
@DeOdderKeith wrote:
Kyle, thanks for the suggestions, however, I couldn't get to the "Insert Element Before" and "Delete Element" from the right-click menu while the application is running.
Can you please help me create another Array with another right-click menu with any items?
Keith
If you need the only these, then you don't need to customize menu, this is how it looks by default in run-time:
Be sure that the defaukt menu is enabled in VI props:
But if you prefer to override default with your own customized, then you should use these two tags:
APP_SC_DELETE_ELEMENT
APP_SC_INSERT_ELEMENT_BEFORE
05-11-2024 06:36 AM
THANKS !!!
That was the solution
Keith