HMG.3.3.0 Patch 3 (32 and 64-bits)

HMG Unicode versions 3.1.x related

Moderator: Rathinagiri

User avatar
srvet_claudio
Posts: 2193
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by srvet_claudio »

Hi all.
This patch include the previous patch 1 and 2. viewtopic.php?f=43&t=3782
Unzip the patch in c:\hmg.3.3.0\ and execute BuildAllLib.bat and _BuildAllLib64.bat
Please you check for changes made.

The changes I made:

Code: Select all

- Now all controls (Button, CheckButton, ToolBarButton, ComboBox, Grid, Tab, Tree, Menu, etc) of the HMG loaded images: BMP, GIF, TIF, JPG and PNG and support the NOTRANSPARENT property

- Print images in formats: BMP, GIF, JPG, TIF, WMF, EMF, CUR and PNG. 
@ <nRow> , <nCol> PRINT IMAGE <cImageFileName> | <cImageResourcename>
    WIDTH <nWidth>
    HEIGHT <nHeight>
    [ STRETCH ]
    [ TRANSPARENT ]
    [ TRANSPARENTCOLOR anTransparentColor ]
 
- DatePicker control --> New property FORMAT <cFormatDate> (see demo)

DatePicker demo:

Code: Select all

#include "hmg.ch"

Function Main

   DEFINE WINDOW Form_1 ;
      AT 0,0 ;
      WIDTH 600 HEIGHT 400 ;
      TITLE "HMG DatePicker Format" ;
      MAIN

      @ 10,10 DATEPICKER Date_1 VALUE DATE() WIDTH 280 HEIGHT 50 FORMAT "'Today is:' dddd d MMMM' of 'yyyy"

      @ 10,330 DATEPICKER Date_2 VALUE DATE() FORMAT "yyyy:MM:dd"

      @ 230,10 DATEPICKER Date_3 VALUE DATE() FORMAT "dd/MM/yyyy"

      @ 230,310 DATEPICKER Date_4 VALUE DATE() FORMAT "dd-MM-yyyy"

   END WINDOW

   CENTER WINDOW Form_1
   ACTIVATE WINDOW Form_1
Return Nil


/*
Note: description of the cDateFormat string
 
   "d"        The one- or two-digit day.
   "dd"       The two-digit day. Single-digit day values are preceded by a zero.
   "ddd"      The three-character weekday abbreviation.
   "dddd"     The full weekday name.
 
   "M"        The one- or two-digit month number.
   "MM"       The two-digit month number. Single-digit values are preceded by a zero.
   "MMM"      The three-character month abbreviation.
   "MMMM"     The full month name.
 
   "yy"       The last two digits of the year (that is, 1996 would be displayed as "96").
   "yyyy"     The full year (that is, 1996 would be displayed as "1996").
 
 
   Example:
 
      "d.MM.yyyy"   will display date as 9.02.2012
      "dd.MM.yyyy"  will display date as 09.02.2012
      "dd/MM/yyyy"  will display date as 16/02/2012
      "dd.MMM.yyyy" will display date as 16. FEB. 2012
 
 
   To make the information more readable, you can add body text to the format string by enclosing it in single quotes.
   Spaces and punctuation marks do not need to be quoted. Nonformat characters that are not delimited by single
   quotes will result in unpredictable display by the DATEPICKER control.
 
   For example, to display the current date with the format "'Today is: 04:22:31 Tuesday Mar 23, 1996",
   the format string is "'Today is: 'hh':'m':'s dddd MMM dd', 'yyyy".
   To include a single quote in your body text, use two consecutive single quotes.
 
   For example, "'Don''t forget' MMM dd',' yyyy" produces output that looks like:
   Do not forget Mar 23, 1996. It is not necessary to use quotes with the comma,
   so "'Don''t forget' MMM dd, yyyy" is also valid, and produces the same output.
*/
Attachments
HMG.3.3.0_patch3_(32 and 64-bits).rar
(864.7 KiB) Downloaded 816 times
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
klauskugel
Posts: 90
Joined: Tue Oct 09, 2012 2:28 pm

Re: HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by klauskugel »

M U C H A S G R A C I A S , DOC !

That was it. A Devil's work.

Grid/Browse are working under 64-bit and the compiling in
the IDE is definitely seamless.

Wonderful JOB.

:roll: This is Clipper 3000.

Greetings from Germany
klauskugel
klauskugel
Posts: 90
Joined: Tue Oct 09, 2012 2:28 pm

Re: HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by klauskugel »

My Platform is AMD64 / Win 8.0 Prof. and All is working so far.

Many Thanks again.

Greetings from Germany
klauskugel
User avatar
srvet_claudio
Posts: 2193
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by srvet_claudio »

klauskugel wrote:Grid/Browse are working under 64-bit and the compiling in
the IDE is definitely seamless.
klauskugel wrote:My Platform is AMD64 / Win 8.0 Prof. and All is working so far.
These are very good news, thanks!
klauskugel wrote: This is Clipper 3000.
Is Clipper 3000 Turbo :lol:
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
danielmaximiliano
Posts: 2607
Joined: Fri Apr 09, 2010 4:53 pm
Location: Argentina
Contact:

Re: HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by danielmaximiliano »

Gracias Claudio..
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
Javier Tovar
Posts: 1275
Joined: Tue Sep 03, 2013 4:22 am
Location: Tecámac, México

Re: HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by Javier Tovar »

Gracias Dr. Claudio ! :D :D :D

Saludos
User avatar
Pablo César
Posts: 4059
Joined: Wed Sep 08, 2010 1:18 pm
Location: Curitiba - Brasil

HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by Pablo César »

klauskugel wrote:My Platform is AMD64 / Win 8.0 Prof. and All is working so far.

Many Thanks again.

Greetings from Germany
klauskugel
Really nice to know this !! :D

Thank you CLaudio, again ! :)
HMGing a better world
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
jayadevu
Posts: 238
Joined: Tue May 19, 2009 7:10 am

Re: HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by jayadevu »

Hi,

I am yet to see a MORE RESPONSIVE TEAM. Congratulations on your excellent work.


Friends, Is there any significant improvement in speed/other areas because of change from 32 to 64 bit.

Warm regards,

Jayadev
User avatar
srvet_claudio
Posts: 2193
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by srvet_claudio »

jayadevu wrote:Hi,

I am yet to see a MORE RESPONSIVE TEAM. Congratulations on your excellent work.


Friends, Is there any significant improvement in speed/other areas because of change from 32 to 64 bit.

Warm regards,

Jayadev
See: http://hmgforum.com/viewtopic.php?p=34869#p34869
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
EduardoLuis
Posts: 682
Joined: Tue Jun 04, 2013 6:33 pm
Location: Argentina

Re: HMG.3.3.0 Patch 3 (32 and 64-bits)

Post by EduardoLuis »

Hola Claudio:

Maravilloso trabajo, como siempre, y desde ya gracias por compartirlo con nosotros.-
Un abrazo.-
Eduardo

Thanks Claudio:

Wonderfull job, as allways, and thanks for share with us.-
With Regards.
Eduardo
Post Reply