MainMenu=createmenu(0)
addmenuitem MainMenu,"File",1
addmenuitem MainMenu,"About",2
FileMenu=createsubmenu(MainMenu,1)
AboutMenu=createsubmenu(MainMenu,2)
addmenuitem FileMenu,"Exit",1
addmenuitem AboutMenu,"About",2
if eventType()=MENU_CLICK
select eventdata()
case 1
exit
endcase
case 2
message "About","You are using Version 2"
endcase
endselect
endif
What I am doing is adding the second bit of code inside every new do, loop I have. But it will only work within the first do, loop
---------
How does a project get to be a year behind schedule? One day at a time