sdpsc
Technical User
- Feb 10, 2001
- 76
How do I pass a variable from a FoxPro app to a VB app? Thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DECLARE INTEGER ShellExecute IN shell32.dll ;
INTEGER hndWin, ;
STRING cAction, ;
STRING cFileName, ;
STRING cParams, ;
STRING cDir, ;
INTEGER nShowWin
cFileName = "MyVBApp"
cParams = "Parm1, Parm2"
cDir = "C:\WhereverMyVBAppIs"
ShellExecute(0, "open", cFileName, cParams, cDir, 1)