http://code.google.com/p/harbour-and-xharbour-builds/downloads/detail?name=harbour_linux_20121029.zip&can=2&q=
Antonio,
What commands are available please?.
In latest .zip there is no tutor02.prg.
Thank you.
Elvira,
In these early tests just check that you get it running fine.
Its not ready for production yet, it is just to get an overview...
We will publish its docs online once it reaches to a more advanced stage
Hi Antonio,
I made a test with your examples in my web server connect to ADS DATABASE SERVER.
Try this link:
http://95.110.162.74/cgi-bin/tutor01.exe
function Main()
local cFile:="" , gtext:="" , AdsHandle , str_conn:=""
REQUEST ADS
rddRegister( "ADS", 1 )
rddsetdefault( "ADS" )
SET SERVER REMOTE
str_conn:="\84.65.128.144:6262\C$\DBTEST\DATATEST.ADD"
IF !AdsConnect60(str_conn, 7,"adssys" , "pass",@AdsHandle)
MsgInfo( "DB NOT CONNECT!!" )
Dbcloseall()
Return nil
ENDIF
USE FR_UTENTI ALIAS APPO SHARED NEW
gtext:=APPO->UTENTE
USE
MsgInfo( gtext )
DBCLOSEALL()
Return nil
Antonio , you're making a great tool
Giuliano
Exelent.
the power of fiveweb.


// Using controls
#include "FiveWeb.ch"
function Main()
local oDlg
DEFINE DIALOG oDlg TITLE "Hello FiveWeb" SIZE 600, 400
@ 100, 50 BUTTON "One" SIZE 80, 20 OF oDlg
@ 100, 150 BUTTON "Two" SIZE 80, 20 OF oDlg
@ 100, 250 BUTTON "Three" SIZE 80, 20 OF oDlg
ACTIVATE DIALOG oDlg
return nil
// Using controls
#include "FiveWeb.ch"
function Main()
local oDlg, lValue := .T.
DEFINE DIALOG oDlg TITLE "Hello FiveWeb" SIZE 600, 400
@ 120, 70 BUTTON "One" SIZE 120, 50 OF oDlg
@ 120, 220 BUTTON "Two" SIZE 120, 50 OF oDlg
@ 120, 370 BUTTON "Three" SIZE 120, 50 OF oDlg
@ 200, 160 CHECKBOX lValue PROMPT "Tested" SIZE 150, 40 OF oDlg
ACTIVATE DIALOG oDlg
return nilHello Antonio,
What ist he disadvantage of useing real Fivewin programs through Remote Desktop Web Access confronted to FiveWeb
except that you need a Window Server not a Linux to run cgi.
Best regards,
Otto
Otto,
The cost of the server. A Linux server costs around 9 U$ by month
Also, keep in mind that FiveWeb is basically a CGI app, which has to work with a client/server implementation
#include "FiveWeb.ch"
function Main()
local oDlg, oFld
DEFINE DIALOG oDlg TITLE "Using folders"
@ 10, 10 FOLDER oFld PROMPTS "One", "Two", "Three" OF oDlg SIZE 400, 300
ACTIVATE DIALOG oDlg
return nil
Doesn't work with IE8.
EMG