About errors in the definition of controls
Posted: Sun Mar 01, 2009 3:27 am
Translated by Google
I am having an error that seems very strange, I have something like this:
PROCEDURE IndexarArchivos
DECLARE WINDOW frmIndexar
Local OArch
Private first_time, save_curs, TotGlobal:= TotReg := RegAct := 0
DEFINE WINDOW frmIndexar ;
AT 0,0 ;
WIDTH 800 ;
HEIGHT 560 ;
TITLE 'Mantenimiento de archivos' ;
MODAL ;
NOSIZE ;
FONT 'ARIAL' SIZE 9
@ 40,40 FRAME oFrame ;
WIDTH 330 ;
HEIGHT 300
@ 40,390 FRAME oFrame1 ;
WIDTH 370 ;
HEIGHT 300
@ 160, 410 PROGRESSBAR oBarraIndividual ;
RANGE 0,100 ;
WIDTH 330 HEIGHT 40
@ 370 , 40 PROGRESSBAR oBarraGeneral ;
RANGE 0,100 ;
WIDTH 720 HEIGHT 40
@ 450,400 BUTTON BtnAceptar ;
CAPTION '&Aceptar' ;
ACTION IniciarIndexado( ) ;
FONT "Arial" SIZE 9
@ 450,660 BUTTON BtnCancelar ;
CAPTION '&Cancelar' ;
ACTION frmIndexar.RELEASE ;
FONT "Arial" SIZE 9
frmIndexar.BtnCancelar.SetFocus
END WINDOW
CENTER WINDOW frmIndexar
ACTIVATE WINDOW frmIndexar
RETURN Nil
Function IniciarIndexado( )
@420,300 LABEL ctexto VALUE "Texto"
* @400,350 TEXTBOX cCaptura
@ 300,390 FRAME oFrame3 ;
WIDTH 370 ;
HEIGHT 300
Return
/************/
For each control that is trying to define a different error, which for ease of reference, annex image.
What am I doing wrong because I can not find the solution.
Thanks for your comments and suggestions
Greetings
Javier
I am having an error that seems very strange, I have something like this:
PROCEDURE IndexarArchivos
DECLARE WINDOW frmIndexar
Local OArch
Private first_time, save_curs, TotGlobal:= TotReg := RegAct := 0
DEFINE WINDOW frmIndexar ;
AT 0,0 ;
WIDTH 800 ;
HEIGHT 560 ;
TITLE 'Mantenimiento de archivos' ;
MODAL ;
NOSIZE ;
FONT 'ARIAL' SIZE 9
@ 40,40 FRAME oFrame ;
WIDTH 330 ;
HEIGHT 300
@ 40,390 FRAME oFrame1 ;
WIDTH 370 ;
HEIGHT 300
@ 160, 410 PROGRESSBAR oBarraIndividual ;
RANGE 0,100 ;
WIDTH 330 HEIGHT 40
@ 370 , 40 PROGRESSBAR oBarraGeneral ;
RANGE 0,100 ;
WIDTH 720 HEIGHT 40
@ 450,400 BUTTON BtnAceptar ;
CAPTION '&Aceptar' ;
ACTION IniciarIndexado( ) ;
FONT "Arial" SIZE 9
@ 450,660 BUTTON BtnCancelar ;
CAPTION '&Cancelar' ;
ACTION frmIndexar.RELEASE ;
FONT "Arial" SIZE 9
frmIndexar.BtnCancelar.SetFocus
END WINDOW
CENTER WINDOW frmIndexar
ACTIVATE WINDOW frmIndexar
RETURN Nil
Function IniciarIndexado( )
@420,300 LABEL ctexto VALUE "Texto"
* @400,350 TEXTBOX cCaptura
@ 300,390 FRAME oFrame3 ;
WIDTH 370 ;
HEIGHT 300
Return
/************/
For each control that is trying to define a different error, which for ease of reference, annex image.
What am I doing wrong because I can not find the solution.
Thanks for your comments and suggestions
Greetings
Javier