Hi Mark,

I would suggest using the ReadControlValue MB command
for popupmenus. It will ALWAYS return the item
selected in the popupmenu.

e.g

Control PopUpMenu
   Title "One;Two;Three"
   ID 100
   Calling ID100Handler
-------
sub ID100Handler
Dim X As Integer

X = ReadControlValue(100)
Note(X)

'whichever value you select, one, two or three...X
will reflect the selected item in the menu. Default is
usually 1 (ie. first item in the list)

End Sub

does this help?

Ben



__________________________________________________
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com

---------------------------------------------------------------------
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to