Harbour MiniGUI Extended Edition build 19.01 is published
Moderator: Rathinagiri
- gfilatov
- Posts: 590
- Joined: Fri Aug 01, 2008 5:42 am
- Location: Ukraine
- Has thanked: 17 times
- Been thanked: 160 times
- Contact:
Harbour MiniGUI Extended Edition build 19.01 is published
Hi Friends,
We are pleased to announce a new build of Harbour MiniGUI Extended Edition.
It is a regularly scheduled maintenance and bugfix release.
Here's a breakdown of some of the modifications in the build 19.01.
For the full list, please see the changelog.
* Fixed a problem with AUTOSIZE property handling in the CHECKLABEL
control.
* Added 'VCENTERALIGN' clause (optional) for vertical aligning of
a text in CHECKLABEL control.
* New: Switcher control for logical variables.
Syntax:
@ <row>,<col> SWITCHER <name> [ OF <parent> ] ;
HEIGHT 46 ;
IMAGE { 'MINIGUI_SWITCH_ON', 'MINIGUI_SWITCH_OFF' } ;
[ VALUE <cValue> ] ;
[ FONT <fontname> SIZE <fontsize> ] ;
[ LEFTCHECK ] [ CHECKED ] ;
[ ON MOUSEHOVER <bMouseHover> ] ;
[ ON MOUSELEAVE <bMouseLeave> ] ;
[ ON CLICK <bMouseClick> ]
* A Switcher control was used for managing of the logical variables
in the function InputWindow().
* Added an auxiliary conversion function
HMG_ClrToHTML( nClr ) --> cHtmlClr ( format "#rrggbb" )
* Updated the TSBrowse and Sqlite3 libraries.
* Updated HMGS-IDE to version 1.4.3.5.
* Updated Harbour Compiler 3.2.0dev to a recent Git-version.
(ChangeLog Last Entry: 2019-01-15 12:50)
* Added the new interesting samples and updated some Advanced samples.
A setup of the build 19.01 for Borland C++ 5.5.1 is published at
the following URL:
http://hmgextended.com/files/CONTRIB/hm ... -setup.exe
There are also an extra xHarbour.org-based archive for this build and
Minigui Ex build for the free Embarcadero C++ 10.1 Berlin compiler at
the Minigui's download page.
This release is considered stable and ready for production use.
Thanks for your attention and support!
--
Best Regards,
Grigory Filatov
[MiniGUI Team]
We are pleased to announce a new build of Harbour MiniGUI Extended Edition.
It is a regularly scheduled maintenance and bugfix release.
Here's a breakdown of some of the modifications in the build 19.01.
For the full list, please see the changelog.
* Fixed a problem with AUTOSIZE property handling in the CHECKLABEL
control.
* Added 'VCENTERALIGN' clause (optional) for vertical aligning of
a text in CHECKLABEL control.
* New: Switcher control for logical variables.
Syntax:
@ <row>,<col> SWITCHER <name> [ OF <parent> ] ;
HEIGHT 46 ;
IMAGE { 'MINIGUI_SWITCH_ON', 'MINIGUI_SWITCH_OFF' } ;
[ VALUE <cValue> ] ;
[ FONT <fontname> SIZE <fontsize> ] ;
[ LEFTCHECK ] [ CHECKED ] ;
[ ON MOUSEHOVER <bMouseHover> ] ;
[ ON MOUSELEAVE <bMouseLeave> ] ;
[ ON CLICK <bMouseClick> ]
* A Switcher control was used for managing of the logical variables
in the function InputWindow().
* Added an auxiliary conversion function
HMG_ClrToHTML( nClr ) --> cHtmlClr ( format "#rrggbb" )
* Updated the TSBrowse and Sqlite3 libraries.
* Updated HMGS-IDE to version 1.4.3.5.
* Updated Harbour Compiler 3.2.0dev to a recent Git-version.
(ChangeLog Last Entry: 2019-01-15 12:50)
* Added the new interesting samples and updated some Advanced samples.
A setup of the build 19.01 for Borland C++ 5.5.1 is published at
the following URL:
http://hmgextended.com/files/CONTRIB/hm ... -setup.exe
There are also an extra xHarbour.org-based archive for this build and
Minigui Ex build for the free Embarcadero C++ 10.1 Berlin compiler at
the Minigui's download page.
This release is considered stable and ready for production use.
Thanks for your attention and support!
--
Best Regards,
Grigory Filatov
[MiniGUI Team]
- serge_girard
- Posts: 2208
- Joined: Sun Nov 25, 2012 2:44 pm
- DBs Used: 1 MySQL - MariaDB
2 DBF - Location: Belgium
- Has thanked: 496 times
- Been thanked: 110 times
- Contact:
-
- Posts: 11
- Joined: Sun Jan 11, 2015 1:33 pm
- Has thanked: 2 times
- Been thanked: 1 time
- gfilatov
- Posts: 590
- Joined: Fri Aug 01, 2008 5:42 am
- Location: Ukraine
- Has thanked: 17 times
- Been thanked: 160 times
- Contact:
Hi All,
I've uploaded the updated setup of the build 19.01 for Borland C++ 5.5.1 at
http://hmgextended.com/files/CONTRIB/hm ... -setup.exe
Whatsnew:
* Enhanced: Added an alternative syntax for the new SWITCHER control
with the default values for 'Height', 'Image', 'Autosize' and
'Vertical Aligning' properties.
Sample code:
DEFINE SWITCHER Label_1
PARENT <FormName>
ROW 150
COL 30
VALUE 'On / Off switcher'
CHECKED .T.
FONTNAME 'Arial'
FONTSIZE 12
ONMOUSEHOVER RC_CURSOR( "MINIGUI_FINGER" )
END SWITCHER
Requested by Sylvain Larche.
Contributed by Grigory Filatov <gfilatov@inbox.ru>
(see demo in folder \samples\Basic\CheckLabel_3)
* Updated: HbZeeGrid library:
- pacified a warning for 64-bit compatibility (was passed
MinGW 8.2.0 64-bit).
Contributed by Grigory Filatov <gfilatov@inbox.ru>
(see source in folder \Source\HbZeeGrid).
* Updated: 'TSBrowse Export data to a XLS/XML file' sample:
- added using of the new function HMG_ClrToHTML().
Contributed by Sergej Kiselev
(see Tsb4xml.prg in folder \samples\Advanced\Tsb_Brw2xml)
The upgrade to this build is optional.
Thanks for your attention.
--
Best Regards,
Grigory Filatov
[MiniGUI Team]
I've uploaded the updated setup of the build 19.01 for Borland C++ 5.5.1 at
http://hmgextended.com/files/CONTRIB/hm ... -setup.exe
Whatsnew:
* Enhanced: Added an alternative syntax for the new SWITCHER control
with the default values for 'Height', 'Image', 'Autosize' and
'Vertical Aligning' properties.
Sample code:
DEFINE SWITCHER Label_1
PARENT <FormName>
ROW 150
COL 30
VALUE 'On / Off switcher'
CHECKED .T.
FONTNAME 'Arial'
FONTSIZE 12
ONMOUSEHOVER RC_CURSOR( "MINIGUI_FINGER" )
END SWITCHER
Requested by Sylvain Larche.
Contributed by Grigory Filatov <gfilatov@inbox.ru>
(see demo in folder \samples\Basic\CheckLabel_3)
* Updated: HbZeeGrid library:
- pacified a warning for 64-bit compatibility (was passed
MinGW 8.2.0 64-bit).
Contributed by Grigory Filatov <gfilatov@inbox.ru>
(see source in folder \Source\HbZeeGrid).
* Updated: 'TSBrowse Export data to a XLS/XML file' sample:
- added using of the new function HMG_ClrToHTML().
Contributed by Sergej Kiselev
(see Tsb4xml.prg in folder \samples\Advanced\Tsb_Brw2xml)
The upgrade to this build is optional.
Thanks for your attention.
--
Best Regards,
Grigory Filatov
[MiniGUI Team]