Page 1 of 1

Harbour MiniGUI 2.6.5

Posted: Wed Sep 24, 2008 5:54 pm
by Roberto Lopez
English:

- Fixed: Problem in print preview introduced in 2.6.2.

- Updated: Harbour compiler updated to version 1.01.

- Modified: Documentation.

Español:

- Solucionado: Problema en la vista previa de impresión introducido
en la versión 2.6.2.

- Actualizado: Harbour a la versión 1.01.

- Modificado: Documentación.

Re: Harbour MiniGUI 2.6.5

Posted: Wed Sep 24, 2008 8:54 pm
by esgici
Hi Roberto

Many thanks in advance :)
Modified : Documentation
Reference.txt became .htmls :shock:

Best Regards

--

esgici

Re: Harbour MiniGUI 2.6.5

Posted: Thu Sep 25, 2008 12:11 am
by Roberto Lopez
esgici wrote:Hi Roberto

Many thanks in advance :)
Modified : Documentation
Reference.txt became .htmls :shock:

Best Regards

--

esgici
Well... when I've reviewed the docs because your suggestions, I've discovered that were about 130 properties not documented at all!!!!
(no events and only some methods).

Besides that, there is a lot of problems with documentation consistency, so I've decided to start the painful task of document (at least briefly) all the library.

This will take a LOT of time... but... it must be done.

Regards,

Roberto.

Re: Harbour MiniGUI 2.6.5

Posted: Thu Sep 25, 2008 12:38 pm
by gfilatov
Roberto Lopez wrote:Well... when I've reviewed the docs because your suggestions, I've discovered that were about 130 properties not documented at all!!!!
(no events and only some methods).

Besides that, there is a lot of problems with documentation consistency, so I've decided to start the painful task of document (at least briefly) all the library.

This will take a LOT of time... but... it must be done.
Hi Roberto,

Take a look for this issue in doc\functions.html:
CallDll32()


Function: Opens the system color selection dialog and return selected color.

CallDll32 ( <cFunctionName> , <cDllName> , ... <parameters> ... ) --> xReturnValue
and also for a wrong action of MULTIPLY hotkey in Preview windows: :(
ON KEY MULTIPLY ACTION ( If ( _HMG_PRINTER_PPNAV.b5.value == .T. , _HMG_PRINTER_PPNAV.b5.value := .F. , _HMG_PRINTER_PPNAV.b5.value := .T. ) , _HMG_PRINTER_Zoom() )

Re: Harbour MiniGUI 2.6.5

Posted: Thu Sep 25, 2008 2:49 pm
by Roberto Lopez
gfilatov wrote:
Roberto Lopez wrote:Well... when I've reviewed the docs because your suggestions, I've discovered that were about 130 properties not documented at all!!!!
(no events and only some methods).

Besides that, there is a lot of problems with documentation consistency, so I've decided to start the painful task of document (at least briefly) all the library.

This will take a LOT of time... but... it must be done.
Hi Roberto,

Take a look for this issue in doc\functions.html:
CallDll32()


Function: Opens the system color selection dialog and return selected color.

CallDll32 ( <cFunctionName> , <cDllName> , ... <parameters> ... ) --> xReturnValue
and also for a wrong action of MULTIPLY hotkey in Preview windows: :(
ON KEY MULTIPLY ACTION ( If ( _HMG_PRINTER_PPNAV.b5.value == .T. , _HMG_PRINTER_PPNAV.b5.value := .F. , _HMG_PRINTER_PPNAV.b5.value := .T. ) , _HMG_PRINTER_Zoom() )
Thanks for both reports. I'll fix them ASAP.

Regards,

Roberto.

Re: Harbour MiniGUI 2.6.5

Posted: Fri Sep 26, 2008 4:13 pm
by Rathinagiri
Likewise, in doc\properties.html

fontbold, italic, underline & strikeout all describes about fontsize only. In the case of fontstrikeout the variable is nFontstrikeout instead of lFontStrikeout. Errors are shown bold.


Fontbold


Set / Gets gui object's font size.

<ParentWindowName>.<ControlName>.FontBold := lFontBold

<ParentWindowName>.<ControlName>.FontBold --> lFontBold

Fontitalic

Set / Gets gui object's font size.

<ParentWindowName>.<ControlName>.FontItalic := lFontItalic

<ParentWindowName>.<ControlName>.FontItalic --> lFontItalic

Fontunderline


Set / Gets gui object's font size.


<ParentWindowName>.<ControlName>.FontUnderline := lFontUnderline

<ParentWindowName>.<ControlName>.FontUnderline --> lFontUnderline


Fontstrikeout


Set / Gets gui object's font size.


<ParentWindowName>.<ControlName>.FontStrikeOut := nFontStrikeOut

<ParentWindowName>.<ControlName>.FontStrikeOut --> nFontStrikeOut

Re: Harbour MiniGUI 2.6.5

Posted: Fri Sep 26, 2008 4:17 pm
by Roberto Lopez
rathinagiri wrote:Likewise, in doc\properties.html

fontbold, italic, underline & strikeout all describes about fontsize only. In the case of fontstrikeout the variable is nFontstrikeout instead of lFontStrikeout. Errors are shown bold.


Fontbold

Set / Gets gui object's font size.

<ParentWindowName>.<ControlName>.FontBold := lFontBold

<ParentWindowName>.<ControlName>.FontBold --> lFontBold

Fontitalic

Set / Gets gui object's font size.

<ParentWindowName>.<ControlName>.FontItalic := lFontItalic

<ParentWindowName>.<ControlName>.FontItalic --> lFontItalic

Fontunderline


Set / Gets gui object's font size.


<ParentWindowName>.<ControlName>.FontUnderline := lFontUnderline

<ParentWindowName>.<ControlName>.FontUnderline --> lFontUnderline


Fontstrikeout


Set / Gets gui object's font size.


<ParentWindowName>.<ControlName>.FontStrikeOut := nFontStrikeOut

<ParentWindowName>.<ControlName>.FontStrikeOut --> nFontStrikeOut

Thanks. I'll fix it ASAP.

Regards,

Roberto.