Hi,
I'm new to FoxPro and I was wondering is it possible to launch an executable that is located on a server from a FoxPro stored procedure. The exe is located on the server, but I want to execute from within a FoxPro program. Once executed, the program should run on the server and not the client. Is this possible? I have tried placing a Do prog command on a stored procedure, but it runs on the client side and not the server side. Below is the stored procedure I am attempting to use. I first switch to the server directory and then I call a Do statement.
Procedure executeprog
cd('server path')
Do prog
end proc
Like I said, I am new to FoxPro so this may be way off, any help would be greatly appreciated!
I'm new to FoxPro and I was wondering is it possible to launch an executable that is located on a server from a FoxPro stored procedure. The exe is located on the server, but I want to execute from within a FoxPro program. Once executed, the program should run on the server and not the client. Is this possible? I have tried placing a Do prog command on a stored procedure, but it runs on the client side and not the server side. Below is the stored procedure I am attempting to use. I first switch to the server directory and then I call a Do statement.
Procedure executeprog
cd('server path')
Do prog
end proc
Like I said, I am new to FoxPro so this may be way off, any help would be greatly appreciated!