Page 2 of 2

Re: HMG Extended Edition version 23.02 is published

Posted: Thu Feb 23, 2023 8:46 am
by gfilatov
AUGE_OHR wrote: Wed Feb 22, 2023 9:57 pm hi Grigory,

does Shell_NotifyIcon of MsgBallon work under 64 Bit OS () :?:

it does not "fly-out" :o
Hi Jimmy,

I confirm that MsgBalloon doesn't work under 64 Bit OS :(

Sorry I don't know the reason.

Re: HMG Extended Edition version 23.02 is published

Posted: Thu Mar 02, 2023 8:04 am
by gfilatov
Hi All,

I've uploaded the updated setup of the build 23.02 for Borland C++ 5.8.2 at

http://hmgextended.com/files/CONTRIB/hm ... -setup.exe

Whatsnew:

2023/03/02: HMG Extended Edition version 23.02 (Update 2).
* Updated: Synchronized Extended HMG for compatibility with Official HMG:
- New: DynamicFont property to have any text font and style in header.
<ParentWindow>.<GridControl>.HeaderDYNAMICFONT ( nCol ) := {|| cFontName }
where
cFontName was defined with DEFINE FONT <font> FONTNAME <name> ... command
- New: HeaderDynamicForeColor and HeaderDynamicForeColor
<ParentWindow>.<GridControl>.HeaderDYNAMICFORECOLOR ( nCol ) := {|| aColor }
<ParentWindow>.<GridControl>.HeaderDYNAMICBACKCOLOR ( nCol ) := {|| aColor }
(see demo in folder \samples\Basic\Grid_Dynamic_Font)
- Enhanced: The GetColor() function can return an optional second parameter
by reference.
Syntax:
GetColor ( [ aDefaultColor ], [ @aCustomColors ], [ lFullOpenBox ] )
--> aColor or { NIL, NIL, NIL }
where
aCustomColors may be the array with 16 RGB-colors (or array) elements.
(see demo in folder \samples\Basic\COMMON_DIALOGS)
Based upon a contribution of Claudio Soto.
Adapted for Minigui Extended by Grigory Filatov
* New: 'Using of TSBrowse for a table from an array' sample:
- deletion/insertion/duplicate records;
- own virtual column on the left - numerator;
- writing and reading to a JSON file.
Contributed by Sergej Kiselev and Verchenko Andrey
(see in folder \samples\Advanced\Tsb_array_4)
* Updated: 'HMG common dialogs' sample.
Contributed by Grigory Filatov <gfilatov@gmail.com>
(see in folder \samples\Basic\COMMON_DIALOGS)
* Updated: 'GRID Extended Test' sample:
- updated for the recent changes in the Minigui core.
Contributed by Grigory Filatov <gfilatov@gmail.com>
(see demo5.prg in folder \samples\Basic\Grid_Test)
* Updated: 'TsBrowse Array' sample.
Problem was reported by Allan De Sa.
Contributed by Grigory Filatov <gfilatov@gmail.com>
(see in folder \samples\Advanced\Tsb_Array)
Upgrading to this update is optional.

Thanks a lot for your attention.

--
Best Regards,
Grigory Filatov
[MiniGUI Team]

P.S. I continue to count on help from the Minigui users.

Re: HMG Extended Edition version 23.02 is published

Posted: Fri Mar 03, 2023 7:51 am
by serge_girard
Thanks Grigory !

Serge

Re: HMG Extended Edition version 23.02 is published

Posted: Tue Mar 14, 2023 8:34 am
by gfilatov
Hi All,

I've uploaded the updated setup of the build 23.02 for Borland C++ 5.8.2 at

http://hmgextended.com/files/CONTRIB/hm ... -setup.exe

Upgrading to this update is optional.

Whatsnew:

2023/03/14: HMG Extended Edition version 23.02 (Update 3).
* Enhanced: The dialog boxes (GetFile, GetFolder, PutFile, MsgXXX,
MessageBoxTimeout, GetPrinter, etc.) respects the global
icon setting which was specified via the command
SET DEFAULT ICON TO <IconName>.
Requested by Pete D.
Contributed by Grigory Filatov <gfilatov@gmail.com>
(see demo in folder \samples\Advanced\SetDialogBoxIcon)
* Updated: HbSQLite3 library:
- update for using SQLITE3 version 3.41.1 (from 3.41.0).
Contributed by Grigory Filatov <gfilatov@gmail.com>
* Updated: Harbour Compiler 3.2.0dev (SVN 2023-03-09 15:50):
* fixed the HPDF_Page_SetDash() function in libhpdf library.
Contributed by Grigory Filatov <gfilatov@gmail.com>
(look at ReadMe.txt in folder \harbour)
* Updated: 'Set a default icon to a standard dialog box' sample:
- updated with the latest changes in the Minigui core.
Contributed by Grigory Filatov <gfilatov@gmail.com>
(see in folder \samples\Advanced\SetDialogBoxIcon)
* Updated: 'How to add, edit, delete and view data using an object
in child window MDI' sample.
Contributed by Grigory Filatov <gfilatov@gmail.com>
(see test04.prg in folder \samples\Advanced\TDatabase)
* Updated: 'Using of TSBrowse for a table from an array' sample.
Contributed by Sergej Kiselev and Verchenko Andrey
(see in folder \samples\Advanced\Tsb_array_4)
--
Best Regards,
Grigory Filatov
[MiniGUI Team]

P.S. I continue to count on help from the Minigui users.
To make the donation, simply do a PayPal transfer to:

o.g.filatova@gmail.com

PLEASE SUPPORT YOUR FAVORITE TOOL!

Re: HMG Extended Edition version 23.02 is published

Posted: Tue Mar 14, 2023 8:48 am
by serge_girard
Thanks Grigory!

Re: HMG Extended Edition version 23.02 is published

Posted: Thu Mar 30, 2023 7:55 am
by gfilatov
Hi All,

I've uploaded the updated setup of the build 23.02 for Borland C++ 5.8.2 at

https://hmgextended.com/files/CONTRIB/h ... -setup.exe

Whatsnew:

2023/03/30: HMG Extended Edition version 23.02 (Update 4).
* New: Added the new C-function IsHIcon( hIcon ) --> lIsHIcon to check
if the given parameter is a pointer to an icon.
This function is already used in the Minigui core.
Contributed by Grigory Filatov <gfilatov@gmail.com>
* New: Added HbLibXlsxWriter library by Fausto Di Creddo Trautwein
for creating new Excel XLSX files.
Based upon the Libxlsxwriter C library of John McNamara.
Adapted for Minigui Extended by Grigory Filatov
(see source in folder \Source\hblibxlsxwriter)
* Updated: Adaptation FiveWin Class TSBrowse 9.0 in HMG:
- minor corrections in the method UpStable().
Investigated and contributed by Igor Nazarov
(see demo in folder \samples\Advanced\TSBrowse)
* Updated: HbSQLite3 library:
- update for using SQLITE3 version 3.41.2 (from 3.41.1).
Contributed by Grigory Filatov <gfilatov@gmail.com>
* New: 'Show of icons from the system DLL libraries' sample.
Based upon a contribution of Auge & Ohr, Jimmy at HMGFORUM.
(see in folder \samples\Basic\DLLICONS)
* New: 'HyperLinks and Labels usage' sample.
Based upon a contribution of Pablo Cesar Arrascaeta at HMGFORUM.
Adapted for Minigui Extended by Grigory Filatov
(see in folder \samples\Basic\HYPERLINK_2)
* Updated: 'Usage of the built-in ZIP support of Windows' sample:
- modified for archiving to the Backup subfolder.
Contributed by Grigory Filatov <gfilatov@gmail.com>
(see in folder \samples\Basic\Zip_4)
* Updated: 'HbLibXlsxWriter library test' samples:
- update for using libxlsxwriter version 1.1.5 (from 0.7.5).
Contributed by Grigory Filatov <gfilatov@gmail.com>
(see in folder \samples\Advanced\HbXlsxWriter)
Upgrading to this update is optional.

--
Best Regards,
Grigory Filatov
[MiniGUI Team]

P.S. I continue to count on help from the Minigui users.
To make the donation, simply do a PayPal transfer to:

o.g.filatova@gmail.com

PLEASE SUPPORT YOUR FAVORITE TOOL!

Thanks in advance.

Thank you for being here.

Re: HMG Extended Edition version 23.02 is published

Posted: Thu Mar 30, 2023 3:43 pm
by serge_girard
Thanks Grigory!