Hi all,
I hav a form with 2 command buttons
The first ( the second is not visible at this moment) allows me to start an external programm using following code:
DECLARE INTEGER ShellExecute IN shell32.dll INTEGER hndWin,STRING cAction,STRING cFileName,STRING cParams, ;
STRING cDir,INTEGER nShowWin
cFilename = ((rstam)+'bin\stam49.exe')
cAction = "open"
ShellExecute(0,cAction,cFileName,"","",1)
thisform.command3.visible = .T.
Before stam49 starts, the second command button (command3) is visible, and that is wrong, this button must be visible after stam49 is closed.
How to manage it?
regards, Paul
I hav a form with 2 command buttons
The first ( the second is not visible at this moment) allows me to start an external programm using following code:
DECLARE INTEGER ShellExecute IN shell32.dll INTEGER hndWin,STRING cAction,STRING cFileName,STRING cParams, ;
STRING cDir,INTEGER nShowWin
cFilename = ((rstam)+'bin\stam49.exe')
cAction = "open"
ShellExecute(0,cAction,cFileName,"","",1)
thisform.command3.visible = .T.
Before stam49 starts, the second command button (command3) is visible, and that is wrong, this button must be visible after stam49 is closed.
How to manage it?
regards, Paul