FiveWin Web Interface

FiveWin Web Interface

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

Desde aqui podeis probar el interface Web para FiveWin en el que estamos trabajando. Vuestros comentarios y pruebas son muy valiosos! :-)

http://www.fivetechsoft.com/fiveweb

Desde el menú de persiana, por favor seleccionad "New", "Open" and "About"

Por favor probadlo desde el navegador Chrome de Google por ahora, gracias :-)
regards, saludos

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

Re: FiveWin Web Interface

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

la parte cliente de este interface esta programada con Javascript. No usamos ningún código de terceras partes, por lo que teneis control total para modificarlo, mejorarlo, etc. :-)

Fijaos de que forma tan elegante podeis crear un diálogo:

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: 41315
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: 41315
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

Postby Bayron » Sat Oct 15, 2011 9:14 pm

Eso es lo que estabamos esperando!!!!
=====>

Bayron Landaverry
(215)2226600 Philadelphia,PA, USA
+(502)46727275 Guatemala
MayaBuilders@gMail.com

FWH12.04||Harbour 3.2.0 (18754)||BCC6.5||UEstudio 10.10||
Windows 7 Ultimate

FiveWin, One line of code and it's done...
User avatar
Bayron
 
Posts: 815
Joined: Thu Dec 24, 2009 12:46 am
Location: Philadelphia, PA

Re: FiveWin Web Interface

Postby csincuir » Sat Oct 15, 2011 10:14 pm

Excelente Antonio, algo de lo que he estado esperando hace ya buen rato.
Lo he probado con Chrome, y todo correcto.
Con Firefox 7.0, y todo correcto.
Con IE 9.0, solo sale el menú, pero no tiene movimientos.

Saludos.

Carlos.
csincuir
 
Posts: 396
Joined: Sat Feb 03, 2007 6:36 am
Location: Guatemala

Re: FiveWin Web Interface

Postby wmormar » Sat Oct 15, 2011 11:48 pm

Antonio,

checado desde chrome con excelente comportamiento.
William, Morales
Saludos

méxico.sureste
User avatar
wmormar
 
Posts: 1073
Joined: Fri Oct 07, 2005 10:41 pm
Location: México

Re: FiveWin Web Interface

Postby mag071 » Sun Oct 16, 2011 2:27 am

Felicitaciones
En Firefox 7.0.1, tambien corre bien.-
Mario Antonio González Osal
Venezuela
m a g 0 7 1 @ g m a i l. c o m
User avatar
mag071
 
Posts: 140
Joined: Thu Feb 02, 2006 12:09 pm
Location: Venezuela

Re: FiveWin Web Interface

Postby Bayron » Sun Oct 16, 2011 4:32 am

Antonio,

te interesará leer este artículo para que JavaScript funcione bien en Internet Explorer 9:

http://msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx
=====>

Bayron Landaverry
(215)2226600 Philadelphia,PA, USA
+(502)46727275 Guatemala
MayaBuilders@gMail.com

FWH12.04||Harbour 3.2.0 (18754)||BCC6.5||UEstudio 10.10||
Windows 7 Ultimate

FiveWin, One line of code and it's done...
User avatar
Bayron
 
Posts: 815
Joined: Thu Dec 24, 2009 12:46 am
Location: Philadelphia, PA

Re: FiveWin Web Interface

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

Actualizado! Usando GETs :-)

Por favor seleccionad la opción "Find" del menú:
http://www.fivetechsoft.com/fiveweb

Tan sencillo como:
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: 41315
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

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

Usando imágenes:

Selecciona la opción "About" del menú:
http://www.fivetechsoft.com/fiveweb

Tan sencillo como:
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: 41315
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

Postby Mike Serra » Sun Oct 16, 2011 9:16 am

En Safari (iPad/iPhone) solo sale el menú.

Saludos
Mike Serra
 
Posts: 297
Joined: Fri Apr 14, 2006 5:52 pm
Location: Córdoba (España)

Re: FiveWin Web Interface

Postby mastintin » Sun Oct 16, 2011 9:27 am

En Safari de lion funciona perfectamente . En ipad el ajuste del menu al ancho de la página no va bien y el despliege de submenus no funciona.
Sañludos.
User avatar
mastintin
 
Posts: 1516
Joined: Thu May 27, 2010 2:06 pm

Re: FiveWin Web Interface

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

Abriendo un fichero local:

Selecciona la opción "Open" del menú:
http://www.fivetechsoft.com/fiveweb

Tan sencillo como:
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: 41315
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

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

Diálogos anidados automáticamente:

Selecciona "Open" y luego pulsa "Ok"
http://www.fivetechsoft.com/fiveweb

Image

Tan sencillo como:
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: 41315
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWin Web Interface

Postby Antonio Linares » Sun Oct 16, 2011 10:56 pm

IE 9 funcionando practicamente bien :-)

http://www.fivetechsoft.com/fiveweb
regards, saludos

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

Next

Return to FiveWin para Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 79 guests