FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour FiveTech's FiveWeb (free up to version 1.0)
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Mon Oct 29, 2012 11:15 AM
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 518
Joined: Fri Jun 29, 2012 12:49 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Mon Oct 29, 2012 12:26 PM

Antonio,

What commands are available please?.

In latest .zip there is no tutor02.prg.

Thank you.

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Mon Oct 29, 2012 01:05 PM

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

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Mon Oct 29, 2012 01:10 PM
Elvira,

Published a new download file with the missing files, thanks

http://code.google.com/p/fiveweb/downloads/detail?name=fiveweb_0.4.zip&can=2&q=
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 50
Joined: Mon Sep 25, 2006 08:38 AM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Tue Oct 30, 2012 11:11 AM

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

include "FiveWeb.ch"

include "c:\harbour\include\ads.ch"

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 :D :D :D :D

Giuliano

Posts: 1144
Joined: Mon Feb 05, 2007 07:15 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Tue Oct 30, 2012 06:45 PM

Exelent.

the power of fiveweb.

Cesar Cortes Cruz

SysCtrl Software

Mexico



' Sin +- FWH es mejor "
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Wed Oct 31, 2012 03:07 AM
Enhanced function MsgInfo() and uploaded changes to Class TDialog proposed by Manuel Alvarez:

http://www.fivetechsoft.net/cgi-bin/tutor01

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Sat Nov 03, 2012 12:26 PM
Started Class TButton implementation, new samples/tutor03.prg

http://www.fivetechsoft.net/cgi-bin/tutor03



Code (fw): Select all Collapse
// 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


http://code.google.com/p/fiveweb/downloads/detail?name=fiveweb_0.5.zip&can=2&q=

http://code.google.com/p/fiveweb/source/browse/trunk/source/classes/button.prg
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Sun Nov 04, 2012 01:07 PM
Class TCheckBox:

http://www.fivetechsoft.net/cgi-bin/tutor03



Example:
Code (fw): Select all Collapse
// 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 nil


http://code.google.com/p/fiveweb/downloads/detail?name=fiveweb_0.6.zip&can=2&q=
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Mon Nov 05, 2012 07:50 AM

Hello 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

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Mon Nov 05, 2012 11:43 AM

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

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Tue Nov 06, 2012 10:03 PM
Using folders:

http://www.fivetechsoft.net/cgi-bin/testfold

testfold.prg
Code (fw): Select all Collapse
#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


regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Tue Nov 06, 2012 10:16 PM

Doesn't work with IE8.

EMG

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Tue Nov 06, 2012 10:26 PM
Enrico,

We are using standard JQuery UI so I guess it is not compatible with IE 8 though they claim it is supported:

http://docs.jquery.com/Browser_Compatibility#About_Browser_Compatibility
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveTech's FiveWeb (free up to version 1.0)
Posted: Tue Nov 06, 2012 10:42 PM
regards, saludos

Antonio Linares
www.fivetechsoft.com