FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour FiveWin Web Interface
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
FiveWin Web Interface
Posted: Sat Oct 15, 2011 08:24 PM
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
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 08:29 PM
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 (fw): Select all Collapse
   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
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 08:36 PM
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 581
Joined: Tue Oct 11, 2005 11:28 AM
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 09:16 PM

Antonio,

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

Kleyber Derick



FWH / xHb / xDevStudio / SQLLIB
Posts: 598
Joined: Tue Apr 15, 2008 04:51 PM
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 11:24 PM

Does not seem to work in IE 9. Works infire fox.

Thank you

Harvey
Posts: 581
Joined: Tue Oct 11, 2005 11:28 AM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 01:01 AM

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

Kleyber Derick



FWH / xHb / xDevStudio / SQLLIB
Posts: 512
Joined: Mon Oct 17, 2005 10:38 AM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 06:15 AM

Works perfectly on Safari. Many compliments !!!

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 08:00 AM
Updated! using GETs :-)

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

As easy as:
Code (fw): Select all Collapse
   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()" );  
  }


regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1195
Joined: Mon Oct 17, 2005 05:41 AM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 08:31 AM

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
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 08:34 AM
Using images:

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

As easy as:
Code (fw): Select all Collapse
   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()" );  
  }



regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 09:53 AM
Opening a local file:

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

As easy as:
Code (fw): Select all Collapse
   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()" );  
  }


regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 09:58 AM
Automatic nested dialogs:

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



As easy as:
Code (fw): Select all Collapse
Button( 170, 150, "Ok", oDlg, 100, 40, "MsgInfo( oBtn.value )" );
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 566
Joined: Thu Aug 30, 2007 03:40 PM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 11:41 AM

dont work in ie9 :cry:

Posts: 182
Joined: Tue Oct 18, 2005 10:01 AM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 12:12 PM
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.
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 12:54 PM

I can't imagine the reason why it wouldn't work on IE. What is it?

EMG