English:
- Fixed: 'RangeMax' and 'RangeMin' properties not working when set
its values at runtime for Spinner control.
- Fixed: Incorrect dimensions in print preview windows under
Vista with 'Classic' theme.
- Fixed: 'Caption' property not working for ToolBar buttons.
- Fixed: Problem in print preview introduced in 2.6.2.
Español:
- Solucionado: Las propiedades 'RangeMax' y 'RangeMin' no funcionan
al intentar cambiar sus valores en tiempo de ejecución para el control
Spinner.
- Solucionado: Dimensiones de las ventanas de vista previa de
impresión en Vista con el tema 'Clásico'
- Solucionado: Problemas con la propiedad 'Caption' en los botones
de ToolBar.
- Solucionado: Problema en la vista previa de impresión introducido
en la versión 2.6.2.
Harbour MiniGUI 2.6.3:
Moderator: Rathinagiri
- Roberto Lopez
- HMG Founder
- Posts: 4012
- Joined: Wed Jul 30, 2008 6:43 pm
Harbour MiniGUI 2.6.3:
Regards/Saludos,
Roberto
(Veritas Filia Temporis)
Roberto
(Veritas Filia Temporis)
- esgici
- Posts: 4543
- Joined: Wed Jul 30, 2008 9:17 pm
- DBs Used: DBF
- Location: iskenderun / Turkiye
- Contact:
Re: Harbour MiniGUI 2.6.3:
Hi Roberto
This is weekend and you are working hardly for us.
I can't know how I can thank you.
May God give you a long life.
Best Regards
--
esgici
This is weekend and you are working hardly for us.
I can't know how I can thank you.
May God give you a long life.
Best Regards
--
esgici
Viva INTERNATIONAL HMG 

Re: Harbour MiniGUI 2.6.3:
There is a small addition in the function SetProperty() for this fix:Roberto Lopez wrote:English:
...
- Fixed: 'Caption' property not working for ToolBar buttons.
Code: Select all
...
ElseIf Arg3 == 'CAPTION'
IF GetControlType ( Arg2 , Arg1 ) == 'TOOLBUTTON'
k := GetControlIndex ( Arg2 , Arg1 )
_HMG_SYSDATA [ 33 ] [k] := Arg4 // Add here
SetToolButtonCaption ( _HMG_SYSDATA [26] [k] , _HMG_SYSDATA [5] [k] , Arg4 )
Else
...
Code: Select all
...
If _HMG_SYSDATA [1] [i] == 'TOOLBUTTON'
cRetVal := _HMG_SYSDATA [33] [i]
Else
...
Kind Regards,
Grigory Filatov
"Everything should be made as simple as possible, but no simpler." Albert Einstein
Grigory Filatov
"Everything should be made as simple as possible, but no simpler." Albert Einstein
- Roberto Lopez
- HMG Founder
- Posts: 4012
- Joined: Wed Jul 30, 2008 6:43 pm
Re: Harbour MiniGUI 2.6.3:
You are absolutely right.gfilatov wrote:There is a small addition in the function SetProperty() for this fix:Roberto Lopez wrote:English:
...
- Fixed: 'Caption' property not working for ToolBar buttons.
It will correspond to code of the function _GetCaption() for ToolBar buttons 'Caption' property:Code: Select all
... ElseIf Arg3 == 'CAPTION' IF GetControlType ( Arg2 , Arg1 ) == 'TOOLBUTTON' k := GetControlIndex ( Arg2 , Arg1 ) _HMG_SYSDATA [ 33 ] [k] := Arg4 // Add here SetToolButtonCaption ( _HMG_SYSDATA [26] [k] , _HMG_SYSDATA [5] [k] , Arg4 ) Else ...
Code: Select all
... If _HMG_SYSDATA [1] [i] == 'TOOLBUTTON' cRetVal := _HMG_SYSDATA [33] [i] Else ...
Thanks.
I'll publish the fix in the next release.
Regards,
Roberto.
Regards/Saludos,
Roberto
(Veritas Filia Temporis)
Roberto
(Veritas Filia Temporis)