Page 1 of 6
FiveWin Web Interface
Posted: Sat Oct 15, 2011 8:24 pm
by Antonio Linares
Here you can test the FiveWin Web Interface that we are working on. Your feedback is very valuable!
http://www.fivetechsoft.com/fivewebFrom the pulldown menu, please select "New", "Open" and "About"
Please try it from Chrome for now, thanks

Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 8:29 pm
by Antonio Linares
The client side of the inteface is coded with Javascript. We are not using any third party code, so you have full control over it, to modify it, enhance it, etc

See how beautifully you can create a Dialog:
Code: Select all | Expand
function About()
{
oDlg = new Dialog( "About", 400, 300 );
Say( 100, 110, "FiveWin Web Interface", oDlg );
Say( 130, 100, "(c) FiveTech Software 2011", oDlg );
Button( 220, 150, "Ok", oDlg, 100, 40, "oDlg.End()" );
}
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 8:36 pm
by Antonio Linares
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 9:16 pm
by Kleyber
Antonio,
First of all congratulations for your job. It works just fine in Firefox too.
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 11:24 pm
by hag
Does not seem to work in IE 9. Works infire fox.
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 1:01 am
by Kleyber
I confirm. It does not work in IE9. Just display the menu but with no function.
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 6:15 am
by Massimo Linossi
Works perfectly on Safari. Many compliments !!!
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 8:00 am
by Antonio Linares
Updated! using GETs

Please select "Find" menu option:
http://www.fivetechsoft.com/fivewebAs easy as:
Code: Select all | Expand
function Find()
{
oDlg = new Dialog( "Find", 500, 200 );
Say( 60, 20, "Find what:", oDlg );
Get( 56, 110, "FiveWin Web Interface ", oDlg, 360, 30 );
Button( 140, 150, "Ok", oDlg, 100, 40, "oDlg.End()" );
Button( 140, 270, "Cancel", oDlg, 100, 40, "oDlg.End()" );
}

Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 8:31 am
by Marc Vanzegbroeck
Working fine in Google Chrome 14.0.835.202 m

, not on IE9
Marc
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 8:34 am
by Antonio Linares
Using images:
Please select "About" from the main menu:
http://www.fivetechsoft.com/fivewebAs easy as:
Code: Select all | Expand
function About()
{
oDlg = new Dialog( "About", 400, 300 );
Image( 70, 30, "images/fivetech.bmp", oDlg );
Say( 90, 170, "FiveWin Web Interface", oDlg );
Say( 120, 160, "(c) FiveTech Software 2011", oDlg );
Button( 220, 150, "Ok", oDlg, 100, 40, "oDlg.End()" );
}

Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 9:53 am
by Antonio Linares
Opening a local file:
Please select "Open" from the menu:
http://www.fivetechsoft.com/fivewebAs easy as:
Code: Select all | Expand
function Open()
{
oDlg = new Dialog( "Open a local file", 500, 230 );
oBtn = BtnOpen( 70, 20, "*.prg", oDlg, 460, 26 );
Image( 110, 30, "images/openfile.png", oDlg, 80, 80 );
Button( 170, 150, "Ok", oDlg, 100, 40, "MsgInfo( oBtn.value )" );
Button( 170, 270, "Cancel", oDlg, 100, 40, "oDlg.End()" );
}

Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 9:58 am
by Antonio Linares
Automatic nested dialogs:
Please select "Open" then click on "Ok"
http://www.fivetechsoft.com/fiveweb
As easy as:
Code: Select all | Expand
Button( 170, 150, "Ok", oDlg, 100, 40, "MsgInfo( oBtn.value )" );
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 11:41 am
by norberto
dont work in ie9

Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 12:12 pm
by toninhofwi
Hey !
Works perfect on my Sony Xperia X10 !
Nice job Antonio, thanks.
The problem now is that it is not working on IE 9...
Regards,
Toninho.
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 12:54 pm
by Enrico Maria Giordano
I can't imagine the reason why it wouldn't work on IE. What is it?
EMG