FiveWin Web Interface

FiveWin Web Interface

Postby Antonio Linares » Sat Oct 15, 2011 8: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
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

Postby Antonio Linares » Sat Oct 15, 2011 8: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: Select all  Expand view
  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: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

Postby Antonio Linares » Sat Oct 15, 2011 8:36 pm

Image
regards, saludos

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

Re: FiveWin Web Interface

Postby Kleyber » Sat Oct 15, 2011 9:16 pm

Antonio,

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

FWH / xHb / xDevStudio / SQLLIB
User avatar
Kleyber
 
Posts: 581
Joined: Tue Oct 11, 2005 11:28 am
Location: São Luiz, Brasil

Re: FiveWin Web Interface

Postby hag » Sat Oct 15, 2011 11:24 pm

Does not seem to work in IE 9. Works infire fox.
Thank you
Harvey
hag
 
Posts: 598
Joined: Tue Apr 15, 2008 4:51 pm
Location: LOs Angeles, California

Re: FiveWin Web Interface

Postby Kleyber » Sun Oct 16, 2011 1:01 am

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

FWH / xHb / xDevStudio / SQLLIB
User avatar
Kleyber
 
Posts: 581
Joined: Tue Oct 11, 2005 11:28 am
Location: São Luiz, Brasil

Re: FiveWin Web Interface

Postby Massimo Linossi » Sun Oct 16, 2011 6:15 am

Works perfectly on Safari. Many compliments !!!
User avatar
Massimo Linossi
 
Posts: 495
Joined: Mon Oct 17, 2005 10:38 am
Location: Italy

Re: FiveWin Web Interface

Postby Antonio Linares » Sun Oct 16, 2011 8:00 am

Updated! using GETs :-)

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

As easy as:
Code: Select all  Expand view
  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
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

Postby Marc Vanzegbroeck » Sun Oct 16, 2011 8: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
Marc Vanzegbroeck
 
Posts: 1157
Joined: Mon Oct 17, 2005 5:41 am
Location: Belgium

Re: FiveWin Web Interface

Postby Antonio Linares » Sun Oct 16, 2011 8:34 am

Using images:

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

As easy as:
Code: Select all  Expand view
  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: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

Postby Antonio Linares » Sun Oct 16, 2011 9:53 am

Opening a local file:

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

As easy as:
Code: Select all  Expand view
  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: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

Postby Antonio Linares » Sun Oct 16, 2011 9:58 am

Automatic nested dialogs:

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

Image

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

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

Re: FiveWin Web Interface

Postby norberto » Sun Oct 16, 2011 11:41 am

dont work in ie9 :cry:
norberto
 
Posts: 566
Joined: Thu Aug 30, 2007 3:40 pm
Location: BR

Re: FiveWin Web Interface

Postby toninhofwi » 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.
toninhofwi
 
Posts: 170
Joined: Tue Oct 18, 2005 10:01 am

Re: FiveWin Web Interface

Postby Enrico Maria Giordano » Sun Oct 16, 2011 12:54 pm

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

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8315
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Next

Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 93 guests