Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Adding properties to Favorites
Message
 
 
To
06/05/2005 14:58:39
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01011617
Message ID:
01011756
Views:
14
What are you saying here? I added additive in SET PATH, it didn't help.

StartUp.prg is:
SET STRICTDATE TO 0
SET MULTILOCKS ON
SET EXCLUSIVE OFF
SET STATUS BAR ON

*-- SetUp Hackers Guide on ALT-F1
ON KEY LABEL ALT-F1 RUN /N HH.EXE HELP\HackFox.chm

*-- SetUp standard VFP Help on ALT-F2
ON KEY LABEL ALT-F2 RUN /N HH.EXE "..\program files\microsoft visual foxpro 9\DV_FOXHELP.CHM"

*-- SetUp VFP FoxTools Help on ALT-F3
ON KEY LABEL ALT-F3 RUN /N HH.EXE HELP\FOXTOOLS.CHM

*-- SetUp VFE View Help on ALT-F4
ON KEY LABEL ALT-F4 RUN /N HH.EXE HELP\VIEWHLP.CHM

*-- Launch the Mere Mortals framework....
DO STARTMM

DO d:\stonefield\sdt\sdt.app WITH 'Install', '_MSM_TOOLS'

LOCAL lnBarCountTools, lnBar, lnI

lnBarCountTools = CNTBAR("_mtools")
lnBar           = 0

FOR lnI = lnBarCountTools TO 1 STEP -1
   IF PRMBAR('_MSM_TOOLS', GETBAR('_MSM_TOOLS', lnI)) = "ViewEditor"
      lnBar = lnI
      EXIT
   ENDIF 
NEXT lnI

IF lnBar = 0
   DEFINE BAR lnBarCountTools + 1 OF _MSM_TOOLS PROMPT "\-"
   DEFINE BAR lnBarCountTools + 2 OF _MSM_TOOLS PROMPT "ViewEditor" MESSAGE "View creation and maintenance tool"
   ON SELECTION BAR lnBarCountTools + 2 OF _MSM_TOOLS DO VE3.exe
ENDIF
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform