GUI | specifies the machine where GUIslave (gcmnode.exe) resides. When using GUI, a special <filename> CLIPBOARD specifies the actual clipboard. |
VORTEX | specifies the machine where the current connected database driver resides. |
NET | specifies a URL. Currently HTTP and FTP (read only) protocols are supported. |
{ list LL; LL = list_open("select * from " ^^ prompt("Enter table name"),1000); list_view(LL,0); list_file(LL,"gui!clipboard","a"); list_view(list_open("gui!clipboard",10000),0); }Goes to specified URL and loads default page.
{ list LL; LL = list_open("net!http://www.trifox.com",1000); list_view(LL,0); LL = list_open("net!ftp://ftp.trifox.com/pub/docs/INDEX",1000); list_view(LL,0); }