Hi Antonio.
In the get clause, can you use the VALID and PICTURE syntax ?
Thanks
Massimo.
Hi Antonio.
In the get clause, can you use the VALID and PICTURE syntax ?
Thanks
Massimo.
Hubert,
Harbour + FiveWeb create standard CGIs apps, that generate HTML at runtime, using JQuery UI and some code of our own.
Massimo,
No, not yet. I think we will be able to implement them, but not available yet
Thanks Antonio for your great work. ![]()

#include "FiveWeb.ch"
//----------------------------------------------------------------------------//
function Main( cParam )
SET BACKIMAGE TO "http://fiveweb.googlecode.com/svn/trunk/images/beach.jpg"
@ 80, 80 SAY "Pulldown Menu" URL hb_argv( 0 ) + "?pdmenu"
@ 140, 80 SAY "Dialog" URL hb_argv( 0 ) + "?dialog"
do case
case cParam == "pdmenu"
BuildMenu()
case cParam == "dialog"
BuildDialog()
endcase
return nil
//----------------------------------------------------------------------------//
function BuildMenu()
local oMenu
MENU oMenu
MENUITEM "Info"
MENU
MENUITEM "About..." ACTION MsgInfo( "FiveWeb power" )
ENDMENU
MENUITEM "Files"
MENU
MENUITEM "Clients"
MENUITEM "Stock"
ENDMENU
MENUITEM "Reports"
MENUITEM "Help"
ENDMENU
return nil
//----------------------------------------------------------------------------//
function BuildDialog()
local oDlg
DEFINE DIALOG oDlg TITLE "Hello FiveWeb"
ACTIVATE DIALOG oDlg NOWAIT
return nil
//----------------------------------------------------------------------------//
Dear Antonio,
Will FiveWeb run on Windows Server 2008 R2 running IIS 7?
Thank you,
Darrell,
Yes ![]()
Hello Antonio,
I would like to understand the new product.
Am I write that you can use the whole fivewin power except the “screen controls”.
Here you are limited at the ones which are ready at the moment. Which I think are the most important ones.
Can you please descript the developing and employment of a FIVEWEB app.
Thanks in advance
Otto
Dear Otto,
On a web application there is the client side (multiple clients) and the server side (just one server app for all the clients).
On the client side we use the web browser, where we just can execute HTML (+ css style sheets) and javascript. But the client can perform multiple requests to the server (where the FiveWeb app is). The server app is built using Harbour and FiveWeb.
The server app basically performs a process, and provides a HTML output, and ends. It does not remain open, or waiting. It process, provides a result and ends. The dialog boxes, controls, etc that we see on the client side (web browser) are DOM objects managed using javascript.
From those controls, menu options, etc... we can call the server app again, to get new results or simply to update the current ones (in this case we use Jquery Ajax support).
Please let me know if you get this idea, and what are your doubts about it.