Runs a specific program on an FTP (File Transfer Protocol) or RPC (Remote Procedure Call) server powered by WINDEV.
Remark: To allow (or not) the use of this function on an FTP/RPC server, call
NetServerOption.
ConnectFTP is int
ConnectFTP = NetConnect("148.61.125.245", FTPServer, "GUEST", "")
...
// Starts WinWord on the server
NetExécute(ConnectFTP, "WinWord.exe")
Syntax
NetExecute(<Connection identifier> , <Program name>)
<Connection identifier>: Integer
Connection identifier (returned by NetConnect).
<Program name>: ANSI character string
Name of program that will be run on the server.