FiveWin Web Interface

User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

FiveWin Web Interface

Post 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/fiveweb

From the pulldown menu, please select "New", "Open" and "About"

Please try it from Chrome for now, thanks :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: FiveWin Web Interface

Post 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

   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()" );  
  }   
 
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: FiveWin Web Interface

Post by Antonio Linares »

Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Kleyber
Posts: 581
Joined: Tue Oct 11, 2005 11:28 am
Location: São Luiz, Brasil

Re: FiveWin Web Interface

Post by Kleyber »

Antonio,

First of all congratulations for your job. It works just fine in Firefox too.
Kleyber Derick

FWH / xHb / xDevStudio / SQLLIB
hag
Posts: 598
Joined: Tue Apr 15, 2008 4:51 pm
Location: LOs Angeles, California
Contact:

Re: FiveWin Web Interface

Post by hag »

Does not seem to work in IE 9. Works infire fox.
Thank you
Harvey
User avatar
Kleyber
Posts: 581
Joined: Tue Oct 11, 2005 11:28 am
Location: São Luiz, Brasil

Re: FiveWin Web Interface

Post by Kleyber »

I confirm. It does not work in IE9. Just display the menu but with no function.
Kleyber Derick

FWH / xHb / xDevStudio / SQLLIB
User avatar
Massimo Linossi
Posts: 474
Joined: Mon Oct 17, 2005 10:38 am
Location: Italy

Re: FiveWin Web Interface

Post by Massimo Linossi »

Works perfectly on Safari. Many compliments !!!
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: FiveWin Web Interface

Post by Antonio Linares »

Updated! using GETs :-)

Please select "Find" menu option:
http://www.fivetechsoft.com/fiveweb

As easy as:

Code: Select all

   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()" );  
  }  
Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
Marc Vanzegbroeck
Posts: 1102
Joined: Mon Oct 17, 2005 5:41 am
Location: Belgium
Contact:

Re: FiveWin Web Interface

Post by Marc Vanzegbroeck »

Working fine in Google Chrome 14.0.835.202 m :D , not on IE9 :cry:

Marc
Regards,
Marc

FWH32+xHarbour | FWH64+Harbour | BCC | DBF | ADO+MySQL | ADO+MariaDB | ADO+SQLite
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: FiveWin Web Interface

Post by Antonio Linares »

Using images:

Please select "About" from the main menu:
http://www.fivetechsoft.com/fiveweb

As easy as:

Code: Select all

   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()" );  
  }

Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: FiveWin Web Interface

Post by Antonio Linares »

Opening a local file:

Please select "Open" from the menu:
http://www.fivetechsoft.com/fiveweb

As easy as:

Code: Select all

   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()" );  
  }   
 
Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: FiveWin Web Interface

Post by Antonio Linares »

Automatic nested dialogs:

Please select "Open" then click on "Ok"
http://www.fivetechsoft.com/fiveweb

Image

As easy as:

Code: Select all

Button( 170, 150, "Ok", oDlg, 100, 40, "MsgInfo( oBtn.value )" );
regards, saludos

Antonio Linares
www.fivetechsoft.com
norberto
Posts: 566
Joined: Thu Aug 30, 2007 3:40 pm
Location: BR

Re: FiveWin Web Interface

Post by norberto »

dont work in ie9 :cry:
toninhofwi
Posts: 161
Joined: Tue Oct 18, 2005 10:01 am

Re: FiveWin Web Interface

Post 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.
Post Reply