Notifications
Clear all
[Closed] Standard windows DropDown menus
Nov 24, 2009 11:54 pm
Can someone point me in the the direction of how to implement windows drop down menus like the standard “File, Edit, View, Tools” etc in a rollout window?
I saw a video demoing how it is done but cannot find the links anymore.
Cheers
2 Replies
1 Reply
check CreateDialog and RCMenu Clauses in MXS Help
rcmenu win_TopRC
(
submenu "File"
(
menuitem openi "Open ..."
menuitem savei "Save ..."
separator sp1
menuitem exiti "Exit"
)
submenu "Help"
(
menuitem helpi "About"
)
)
try (destroydialog win) catch()
rollout win "Dialog"
(
)
createdialog win 200 100 menu:win_TopRC
Nov 24, 2009 11:54 pm
Brilliant!
I read and read the manuals but they rarely make sense and have only a few examples.
Thanks heaps. :bowdown: