Page 2 of 3
Re: HMG 3.0.22
Posted: Wed Feb 24, 2010 6:45 am
by mol
I've tried to add ComboSearchBox to my simple form and I've got an error:
Code: Select all
Date:2010.02.24 Time: 07:42:58
Error BASE/1003 Variable does not exist: combosearchbox_1Width
Called from __MVGET(0)
Called from ADDCONTROL(1893)
Called from (b)NEW(1531)
Called from _DOWINDOWEVENTPROCEDURE(4943)
Called from EVENTS(1193)
Called from _DOMESSAGELOOP(0)
Called from _ACTIVATEWINDOW(4607)
Called from DOMETHOD(7373)
Called from _OPEN(25260)
Called from EDITFILE(29203)
Called from (b)MAIN(765)
Called from _DOCONTROLEVENTPROCEDURE(4919)
Called from EVENTS(1594)
Called from _DOMESSAGELOOP(0)
Called from _ACTIVATEWINDOW(4561)
Called from MAIN(935)
Re: HMG 3.0.22
Posted: Wed Feb 24, 2010 6:47 am
by Rathinagiri
I will verify ASAP. Can you provide a sample?
Re: HMG 3.0.22
Posted: Wed Feb 24, 2010 9:33 am
by mol
It will be difficult to prepare sample

This error occurs while working interactively with IDE.
It's caused rather by user:
first, try do select combosearchbox,
then - do not place it on the form, but immediately try to build main menu or context menu.
After closing form with definition of menu, try to click anywhere on the form - error occurs.
It would be better to record screen operations and put it as a video, but I have no software to do it...
Marek
Re: HMG 3.0.22
Posted: Wed Feb 24, 2010 6:55 pm
by Roberto Lopez
jucar_es wrote:Don Roberto:
Reciba un cordial saludo
Puede por favor agregar a la linea de paths de build.bat que esta en \hmg 3.0.22 (o la version que se este instalando) LA INSTRUCCION
;%PATH% para que respete los path predefinidos que tenga el usuario (siempre debo modificarlos)
muchas gracias
I'll think about it...
Re: HMG 3.0.22
Posted: Wed Feb 24, 2010 6:57 pm
by Roberto Lopez
danielcrocciari wrote:Saludos Mr. Roberto
Tengo una pregunta.
En el componente cuadro de edición EDITBOX, es cómo definir el ajuste de romper de línea automatico?
Gracias
There is no such thing implemented at high level (minigui library) yet.
Maybe it could be done via direct access to Windows API. It should be researched.
MSDN has lots of info about Windows controls.
Re: HMG 3.0.22
Posted: Wed Feb 24, 2010 7:01 pm
by Roberto Lopez
mol wrote:I've tried to add ComboSearchBox to my simple form and I've got an error:
Code: Select all
Date:2010.02.24 Time: 07:42:58
Error BASE/1003 Variable does not exist: combosearchbox_1Width
Called from __MVGET(0)
Called from ADDCONTROL(1893)
Called from (b)NEW(1531)
Called from _DOWINDOWEVENTPROCEDURE(4943)
Called from EVENTS(1193)
Called from _DOMESSAGELOOP(0)
Called from _ACTIVATEWINDOW(4607)
Called from DOMETHOD(7373)
Called from _OPEN(25260)
Called from EDITFILE(29203)
Called from (b)MAIN(765)
Called from _DOCONTROLEVENTPROCEDURE(4919)
Called from EVENTS(1594)
Called from _DOMESSAGELOOP(0)
Called from _ACTIVATEWINDOW(4561)
Called from MAIN(935)
I've just tested it with current IDE and it works fine.
Maybe you are using an incorrect .uci file, please use this:
ComboSearchBox.Uci
Code: Select all
[Properties]
name,
row,
col,
height,24
width,120
fontname,"Arial"
fontsize,9
fontbold,.F.
fontitalic,.F.
fontunderline,.F.
items,{}
value,""
backcolor,nil
fontcolor,nil
maxlength,nil
uppercase,.f.
lowercase,.f.
numeric,.f.
rightalign,.f.
tabstop,.t.
helpid,nil
[Events]
onlostfocus,nil
ongotfocus,nil
onenter,nil
Re: HMG 3.0.22
Posted: Wed Feb 24, 2010 8:40 pm
by mol
I've described a way to produce this error

I will check the file, you are writing, Roberto, tomorrow - these tests are placed on my computer in the work
Re: HMG 3.0.22
Posted: Thu Feb 25, 2010 9:29 am
by mol
I've just tested it with current IDE and it works fine.
Maybe you are using an incorrect .uci file, please use this:
ComboSearchBox.Uci
I've tested this file, and everything looks the same.
But, I still can't add CoboSearchBox...
Re: HMG 3.0.22
Posted: Thu Feb 25, 2010 1:44 pm
by Roberto Lopez
mol wrote:
I've just tested it with current IDE and it works fine.
Maybe you are using an incorrect .uci file, please use this:
ComboSearchBox.Uci
I've tested this file, and everything looks the same.
But, I still can't add CoboSearchBox...
Ok. I'll added to the pending bug list.
Thanks for the report.
Re: HMG 3.0.22
Posted: Fri Feb 26, 2010 2:02 pm
by mol
There is a little bug in IDE. When you only edit DropDown menu, and compile project after, the form is closing automatically without "Save" advertisement.
I think, it's cause that editing dropdown menu doesn't cause sign form as "CHANGED"...
Marek