FiveTech's FiveWeb (free up to version 1.0)
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
If you like this FiveWeb project, now you can help us with a little donation by PayPal:
http://code.google.com/p/fiveweb/
Thanks for your support
http://code.google.com/p/fiveweb/
Thanks for your support
Re: FiveTech's FiveWeb (free up to version 1.0)
PHP and MySQL sounds interesting, is this in the same package ?Antonio Linares wrote:Yes, thats why we prefer the other FiveWeb implementation based on php and MySQL
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
Hubert,
Yes, the PHP and MySQL source code is included in FiveWeb also
Yes, the PHP and MySQL source code is included in FiveWeb also
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
Using progress bars:
http://www.fivetechsoft.net/cgi-bin/testprog
testprog.prg
Please remember that you can support FiveWeb development with a little PayPal donation from:
http://code.google.com/p/fiveweb/ (PayPal orange button)
FiveWeb is free, full source code included.
http://www.fivetechsoft.net/cgi-bin/testprog
testprog.prg
Code: Select all
// Using ProgressBars
#include "FiveWeb.ch"
function Main()
local oDlg, nValue := 30
DEFINE DIALOG oDlg TITLE "Using ProgressBars" SIZE 600, 400
@ 120, 140 PROGRESS oPrg VAR nValue SIZE 300, 40 OF oDlg
@ 200, 140 BUTTON "<<" OF oDlg SIZE 60, 40 ;
ACTION ProgressDec( "oPrg", 10 )
@ 200, 380 BUTTON ">>" OF oDlg SIZE 60, 40 ;
ACTION ProgressInc( "oPrg", 10 )
ACTIVATE DIALOG oDlg
return nil
http://code.google.com/p/fiveweb/ (PayPal orange button)
FiveWeb is free, full source code included.
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
Added support for themes "Aristo" and "Bootstrap":
http://www.fivetechsoft.net/cgi-bin/themes
Please remember that you can support FiveWeb development with a little PayPal donation from:
http://code.google.com/p/fiveweb/ (PayPal orange button)
FiveWeb is free, full source code included.
http://www.fivetechsoft.net/cgi-bin/themes
Code: Select all
#include "FiveWeb.ch"
function Main()
local oDlg, oFld
BuildMenu()
DEFINE DIALOG oDlg SIZE 600, 400
@ 10, 10 FOLDER oFld PROMPTS "One", "Two", "Three" OF oDlg ;
SIZE 520, 230
@ 260, 150 BUTTON "Ok" OF oDlg ACTION MsgInfo( "ok" )
@ 260, 300 BUTTON "Cancel" OF oDlg ACTION MsgInfo( "cancel" )
ACTIVATE DIALOG oDlg NOWAIT
return nil
function BuildMenu()
local oMenu
MENU oMenu
MENUITEM "Main theme"
MENU
MENUITEM "Light"
MENU
MENUITEM "Aristo" ACTION SetAristoTheme()
MENUITEM "Base" ACTION SetTheme( "base" )
MENUITEM "Black-tie" ACTION SetTheme( "black-tie" )
MENUITEM "Blitzer" ACTION SetTheme( "blitzer" )
MENUITEM "Bootstrap" ACTION SetBootstrapTheme()
MENUITEM "Cupertino" ACTION SetTheme( "cupertino" )
MENUITEM "excite-bike" ACTION SetTheme( "excite-bike" )
MENUITEM "flick" ACTION SetTheme( "flick" )
MENUITEM "hot-sneacks" ACTION SetTheme( "hot-sneaks" )
MENUITEM "humanity" ACTION SetTheme( "humanity" )
MENUITEM "overcast" ACTION SetTheme( "overcast" )
MENUITEM "pepper-grinder" ACTION SetTheme( "pepper-grinder" )
MENUITEM "redmond" ACTION SetTheme( "redmond" )
MENUITEM "smoothness" ACTION SetTheme( "smoothness" )
MENUITEM "south-street" ACTION SetTheme( "south-street" )
MENUITEM "start" ACTION SetTheme( "start" )
MENUITEM "sunny" ACTION SetTheme( "sunny" )
MENUITEM "ui-lightness" ACTION SetTheme( "ui-lightness" )
ENDMENU
MENUITEM "Dark"
MENU
MENUITEM "Dot-lub" ACTION SetTheme( "dot-luv" )
MENUITEM "Dark-hive" ACTION SetTheme( "dark-hive" )
MENUITEM "Eggplant" ACTION SetTheme( "eggplant" )
MENUITEM "le-frog" ACTION SetTheme( "le-frog" )
MENUITEM "mint-choc" ACTION SetTheme( "mint-choc" )
MENUITEM "swanky-purse" ACTION SetTheme( "swanky-purse" )
MENUITEM "trontastic" ACTION SetTheme( "trontastic" )
MENUITEM "ui-darkness" ACTION SetTheme( "ui-darkness" )
MENUITEM "vader" ACTION SetTheme( "vader" )
ENDMENU
ENDMENU
ENDMENU
return oMenu
http://code.google.com/p/fiveweb/ (PayPal orange button)
FiveWeb is free, full source code included.
Re: FiveTech's FiveWeb (free up to version 1.0)
Very good Antonio,
But I think The themes is not the our main target.
But I think The themes is not the our main target.
Regards,
Hakan ONEMLI
Harbour & VS 2019 & FWH 20.12
Hakan ONEMLI
Harbour & VS 2019 & FWH 20.12
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
Added support to SET COLOR TO ... command:
http://www.fivetechsoft.net/cgi-bin/tutor03
tutor03.prg
http://www.fivetechsoft.net/cgi-bin/tutor03
tutor03.prg
Code: Select all
// Using controls
#include "FiveWeb.ch"
function Main()
local oDlg, lValue := .T.
SET COLOR TO "#99CCFF"
DEFINE DIALOG oDlg TITLE "Hello FiveWeb" SIZE 600, 400
@ 120, 70 BUTTON "One" SIZE 120, 50 OF oDlg ACTION MsgInfo( "one" )
@ 120, 220 BUTTON "Two" SIZE 120, 50 OF oDlg ACTION MsgInfo( "two" )
@ 120, 370 BUTTON "Three" SIZE 120, 50 OF oDlg ACTION MsgInfo( "three" )
@ 200, 160 CHECKBOX lValue PROMPT "Tested" SIZE 150, 40 OF oDlg
ACTIVATE DIALOG oDlg
return nil
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
Hakan,
We are exploring the possibilities that jquery ui provides, but of course we are open to all the feedback that you all provide.
If you want us to focus on MySQL, or whatever, thats fine
We are exploring the possibilities that jquery ui provides, but of course we are open to all the feedback that you all provide.
If you want us to focus on MySQL, or whatever, thats fine
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
Setting the background image and dinamically selecting the theme to use:
http://www.fivetechsoft.net/cgi-bin/tutor04
tutor04.prg
http://www.fivetechsoft.net/cgi-bin/tutor04
tutor04.prg
Code: Select all
#include "FiveWeb.ch"
function Main()
local oDlg
SET BACKIMAGE TO "http://fiveweb.googlecode.com/svn/trunk/images/beach.jpg"
SetTheme( "cupertino" )
DEFINE DIALOG oDlg TITLE "Hello FiveWeb" SIZE 600, 400
ACTIVATE DIALOG oDlg NOWAIT
return nil
Re: FiveTech's FiveWeb (free up to version 1.0)
Hello Antonio,
At the moment we have following task to do.
We need an online registration form like the screenshot.
If you click on ok the data should be stored in a TXT or dbf file online on the server.
Do you think this is possible.
Best regards,
Otto
At the moment we have following task to do.
We need an online registration form like the screenshot.
If you click on ok the data should be stored in a TXT or dbf file online on the server.
Do you think this is possible.
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
Otto,
Implementing your example, not finished yet:
http://www.fivetechsoft.net/cgi-bin/otto
otto.prg
Full source code is at FiveWeb site: http://code.google.com/p/fiveweb/
Implementing your example, not finished yet:
http://www.fivetechsoft.net/cgi-bin/otto
otto.prg
Code: Select all
#include "FiveWeb.ch"
function Main()
local oDlg
local cTitle := Space( 80 ), cFamilien := Space( 80 ), cVorname := Space( 80 )
SET BACKIMAGE TO "http://fiveweb.googlecode.com/svn/trunk/images/beach.jpg"
SetTheme( "flick" )
DEFINE DIALOG oDlg TITLE "Otto example" SIZE 600, 400
@ 12, 10 SAY "Title:" OF oDlg
@ 10, 160 GET cTitle OF oDlg SIZE 300, 35
@ 54, 10 SAY "FamilienName:" OF oDlg
@ 52, 160 GET cFamilien OF oDlg SIZE 300, 35
@ 94, 10 SAY "Vorname:" OF oDlg
@ 90, 160 GET cVorname OF oDlg SIZE 300, 35
@ 240, 160 BUTTON "Ok" OF oDlg
@ 240, 300 BUTTON "Cancel" OF oDlg
ACTIVATE DIALOG oDlg NOWAIT
return nil
Re: FiveTech's FiveWeb (free up to version 1.0)
Hello Antonio,
thank you.
What about database management. Is this functioning like in FWH.
Best regards,
Otto
thank you.
What about database management. Is this functioning like in FWH.
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
Otto,
I have updated your example:
http://www.fivetechsoft.net/cgi-bin/otto
Now, when you press "Ok", the typed info goes to the server and can already be stored on a MySQL database. In fact what I am doing is returning back and painting what the server is receiving
Is MySQL fine for you ? Then we can proceed storing the info in the server...
Current code used in Otto.prg
I have updated your example:
http://www.fivetechsoft.net/cgi-bin/otto
Now, when you press "Ok", the typed info goes to the server and can already be stored on a MySQL database. In fact what I am doing is returning back and painting what the server is receiving
Is MySQL fine for you ? Then we can proceed storing the info in the server...
Current code used in Otto.prg
Code: Select all
#include "FiveWeb.ch"
function Main()
local oDlg, oGet1, oGet2, oGet3
local cTitle := Space( 80 ), cFamilien := Space( 80 ), cVorname := Space( 80 )
SET BACKIMAGE TO "http://fiveweb.googlecode.com/svn/trunk/images/beach.jpg"
SetTheme( "flick" )
DEFINE DIALOG oDlg TITLE "Otto example" SIZE 600, 400
@ 12, 10 SAY "Title:" OF oDlg
@ 10, 160 GET oGet1 VAR cTitle OF oDlg SIZE 300, 35
@ 54, 10 SAY "FamilienName:" OF oDlg
@ 52, 160 GET oGet2 VAR cFamilien OF oDlg SIZE 300, 35
@ 94, 10 SAY "Vorname:" OF oDlg
@ 90, 160 GET oGet3 VAR cVorname OF oDlg SIZE 300, 35
@ 150, 160 SAY oSay PROMPT "Please fill this info and press ok" OF oDlg
@ 260, 160 BUTTON "Ok" OF oDlg ;
ACTION $( "#oSay" ).load( "../fiveweb/myproc.php?" + ;
"title=" + document.getElementById( "oGet1" ).value + ;
"&familien=" + document.getElementById( "oGet2" ).value + ;
"&vorname=" + document.getElementById( "oGet3" ).value )
@ 260, 300 BUTTON "Cancel" OF oDlg
ACTIVATE DIALOG oDlg NOWAIT
return nil
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveTech's FiveWeb (free up to version 1.0)
Otto,
For a better understanding of FiveWeb, I am going to save the results in a DBF first
For a better understanding of FiveWeb, I am going to save the results in a DBF first
Re: FiveTech's FiveWeb (free up to version 1.0)
Hello Antonio,
Yes to use use dbf this would be best for me.
Best regards,
Otto
Yes to use use dbf this would be best for me.
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************