Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Sub bar on popup menus
Message
 
To
14/12/2005 13:27:50
General information
Forum:
Visual FoxPro
Category:
Menus & Menu designer
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01077966
Message ID:
01077981
Views:
27
This message has been marked as the solution to the initial question of the thread.
Claudio,

Something like this?
DEFINE POPUP myShortcut SHORTCUT RELATIVE FROM MROW(),MCOL()
DEFINE BAR 1 OF myShortcut PROMPT "myfirst  item one"
DEFINE BAR 2 OF myShortcut PROMPT "mysecond item one"
DEFINE BAR 3 OF myShortcut PROMPT "mymulti  item one  >"

ON SELECTION BAR 1 OF myShortcut wait window 'My First'
ON SELECTION BAR 2 OF myShortcut wait window 'My Second'
ON SELECTION BAR 3 OF myShortcut ACTIVATE POPUP myMulti

DEFINE POPUP myMulti SHORTCUT RELATIVE  FROM MROW()+1,MCOL()+1

DEFINE BAR 1 OF myMulti PROMPT "my first multi"
DEFINE BAR 2 OF myMulti PROMPT "my second multi"
DEFINE BAR 3 OF myMulti PROMPT "my thirdy multi"

ON SELECTION BAR 1 OF myMulti wait window "my first multi"
ON SELECTION BAR 2 OF myMulti wait window "my second multi"
ON SELECTION BAR 3 OF myMulti wait window "my thirdy multi"

ACTIVATE POPUP myShortcut
"The five senses obstruct or deform the apprehension of reality."
Jorge L. Borges?

"Premature optimization is the root of all evil in programming."
Donald Knuth, repeating C. A. R. Hoare

"To die for a religion is easier than to live it absolutely"
Jorge L. Borges
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform