Page 4 of 19
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sat Nov 03, 2012 9:41 pm
by Kleyber
Antonio,
Te felicito por lo que estas haciendo con Fiveweb. Solo tengo dos preguntas:
1 - Como has planeado la creación de las windows y dialogos desde recursos? Seria algo como hacer con Dreamweaver o algo asi?
2 - Has mirado Scriptcase? Es una herramienta que usa PHP+Ajax+Javascript y que te da la ventaja de hacer pantallas en muy poco tiempo!! Era algo asi que deseaba para Fiveweb. Es esto posible? (
www.scriptcase.com.br).
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sat Nov 03, 2012 9:54 pm
by Sistem
en mi host no funciona
el siguiente error se produce cuando se ejecuta el ejemplo (tutor01.exe):
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 1:04 pm
by Antonio Linares
SIstem,
Lo estas copiando a la carpeta cgi-bin ?
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 1:05 pm
by Antonio Linares
Clase TCheckBox:
Ejemplo:
Code: Select all | Expand
// Using controls
#include "FiveWeb.ch"
function Main()
local oDlg, lValue := .T.
DEFINE DIALOG oDlg TITLE "Hello FiveWeb" SIZE 600, 400
@ 120, 70 BUTTON "One" SIZE 120, 50 OF oDlg
@ 120, 220 BUTTON "Two" SIZE 120, 50 OF oDlg
@ 120, 370 BUTTON "Three" SIZE 120, 50 OF oDlg
@ 200, 160 CHECKBOX lValue PROMPT "Tested" SIZE 150, 40 OF oDlg
ACTIVATE DIALOG oDlg
return nil
http://code.google.com/p/fiveweb/downloads/detail?name=fiveweb_0.6.zip&can=2&q=
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 1:11 pm
by Antonio Linares
Kleyber,
Tal como estamos construyendo FiveWeb podriamos usar los RCs estandard de las aplicaciones Windows
poco a poco...
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 4:24 pm
by Enrrique Vertiz
Antonio, como dirian los Jedi, que la fuerza te acompañe !!!
Fiveweb es algo que estabamos esperando ...
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 6:01 pm
by Otto
>Tal como estamos construyendo FiveWeb podriamos usar los RCs estandard de las aplicaciones Windows
Hello Antonio,
I hope I didn’t misunderstand something.
I changed all my resource codeing to hardcodeing to get a Metro similar look.
Do you think also Metro inspired style coding is possible with RC files.
Can you use RC files with WINDOWS or PANELS?
Best regards,
Otto
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 6:54 pm
by Antonio Linares
Otto,
RCs are just a little databases where controls descriptions are stored along with their properties (position, dimension, caption, etc.)
If we read a portion of a RC and analyze it then we can transform it using some patterns that could produce a desired output format.
Thats why I think that we can reuse them
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 6:55 pm
by Antonio Linares
Otto,
Once we have the info already read from the RC then we can create the controls on a window, panel, etc
no limits
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 7:00 pm
by Antonio Linares
Otto,
In samples\re.prg we read a RC and analyze it.
Basically thats what we need: read it, identify a certain dialog and then create the controls ourselves based on the RC info
There are other ways to do it even easier. We create the controls the typicall FWH way and then we change their "parent" ( SetParent() ) so they will become childs of our window, panel, etc
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 7:12 pm
by Antonio Linares
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Sun Nov 04, 2012 10:20 pm
by Sistem
Lo estas copiando a la carpeta cgi-bin ?
sí
http://sistem.net.br/cgi-bin/tutor01.exevoy prueba el Xampp.
gracias
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Mon Nov 05, 2012 12:47 am
by QAZWSX2K
copie ese ejemplo en
http://www.contafuturo.com/cgi-bin/tutor01.exe, le di permisos de ejecutacion o mejor dicho 777 pero me sale esto
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator,
webmaster@contafuturo.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_jk/1.2.32 FrontPage/5.0.2.2635 mod_bwlimited/1.4 mod_auth_passthrough/2.1 PHP/5.2.17 Server at
www.contafuturo.com Port 80
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Mon Nov 05, 2012 10:30 am
by mastintin
Añadida una version preliminar de Radiobuttons y testradio.prg al repositorio. Antonio falta revisarla y mejorarla pero funciona.
Code: Select all | Expand
#include "FiveWeb.ch"
function Main()
local oDlg
local oRad
DEFINE DIALOG oDlg TITLE "Hello FiveWeb" SIZE 600, 400
@ 20,16 RADIO oRad ITEMS "uno","dos","tres" OF oDlg SIZE 50,50
ACTIVATE DIALOG oDlg
return nil
Return nil
Re: FiveWeb de FiveTech (gratis hasta la versión 1.0)
Posted: Mon Nov 05, 2012 11:39 am
by Antonio Linares
Manuel,
gracias!