[futurebasic] DoMenu question

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : February 2010 : Group Archive : Group : All Groups

From: Brian Heibert <heibert@...>
Date: Fri, 12 Feb 2010 23:34:05 -0500
local fn DoMenu
dim as long menuID,itemID
menuID = MENU(_menuID)
itemID = MENU(_itemID)
select (menuID)
case _applemenu
select (itemID)
case 1
beep
case 2
beep
end select
end select
end fn


I have the above DoMenu in my program

But nothing happens when I click on a menuitem in the Application menu
 (formerly Apple Menu)

Brian