Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
I cannot use this menu costant.
Message
From
28/09/2003 16:31:12
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00833025
Message ID:
00833031
Views:
37
Hi Sergey,

---------
Those are separators. You can see them under the Edit pad if you create
Quick menu. How are you trying to use them?
---------

VFP use negative BAR index for implement it's menu.

Example:
_MBR_SP100 is -23804
_MBR_SP200 is -23799

VFP have custom parsing for this value.
? _MBR_SP100     && hide the output value
? _MBR_SP100+0   && parser cut is skip and output is printed
then you can use some negative ( 229 ) values on application bar index
DEFINE POPUP pppp && RELATIVE   && i can use negative like relative on absolute menu !!
DEFINE BAR 1			OF pppp	PROMPT "zippo"
DEFINE BAR _MBR_SP100	OF pppp	PROMPT "\-"
DEFINE BAR 4			OF pppp	PROMPT "pappo"
DEFINE BAR -23799		OF pppp	PROMPT "\-"
DEFINE BAR 6			OF pppp	PROMPT "Tappo"
*DEFINE BAR _MED_SP600	OF pppp	PROMPT "\-" && THIS FIRE A ERROR
ACTIVATE POPUP pppp
I have a full automatic application menu
( generation,activation,selection... )
I use this negative values like separator, but _MED_SP600 and _MBR_SP700
they have been forgotten ( also on IDE )

Fabio
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform