I have a foxpro prg. How can it be triggered to run in a VB programme? Do I need to make the prg into an exe first? Thank you!
Printable View
I have a foxpro prg. How can it be triggered to run in a VB programme? Do I need to make the prg into an exe first? Thank you!
If your foxpro prog is an exe then you can simply use the SHELL command to run your foxpro exe
where:Code:Dim lngResult as Long
lngResult = SHELL (Prog,Window state)
Prog - is your exe (full or relative path )
Window state - is the state of your foxpro window
DocZaf
{;->