Page 1 of 6
FiveWin Web Interface
Posted: Sat Oct 15, 2011 8:26 pm
by Antonio Linares
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
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 8:33 pm
by Antonio Linares
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
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:14 pm
by Bayron
Eso es lo que estabamos esperando!!!!
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 10:14 pm
by csincuir
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.
Re: FiveWin Web Interface
Posted: Sat Oct 15, 2011 11:48 pm
by wmormar
Antonio,
checado desde chrome con excelente comportamiento.
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 2:27 am
by mag071
Felicitaciones
En Firefox 7.0.1, tambien corre bien.-
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 4:32 am
by Bayron
Antonio,
te interesará leer este artículo para que JavaScript funcione bien en Internet Explorer 9:
http://msdn.microsoft.com/en-us/library ... S.85).aspx
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 8:02 am
by Antonio Linares
Actualizado! Usando GETs
Por favor seleccionad la opción "Find" del menú:
http://www.fivetechsoft.com/fiveweb
Tan sencillo como:
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()" );
}
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 8:31 am
by Antonio Linares
Usando imágenes:
Selecciona la opción "About" del menú:
http://www.fivetechsoft.com/fiveweb
Tan sencillo como:
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()" );
}
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 9:16 am
by Mike Serra
En Safari (iPad/iPhone) solo sale el menú.
Saludos
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 9:27 am
by mastintin
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.
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 9:52 am
by Antonio Linares
Abriendo un fichero local:
Selecciona la opción "Open" del menú:
http://www.fivetechsoft.com/fiveweb
Tan sencillo como:
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()" );
}
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 10:00 am
by Antonio Linares
Diálogos anidados automáticamente:
Selecciona "Open" y luego pulsa "Ok"
http://www.fivetechsoft.com/fiveweb
Tan sencillo como:
Code: Select all
Button( 170, 150, "Ok", oDlg, 100, 40, "MsgInfo( oBtn.value )" );
Re: FiveWin Web Interface
Posted: Sun Oct 16, 2011 10:56 pm
by Antonio Linares
IE 9 funcionando practicamente bien
http://www.fivetechsoft.com/fiveweb