HMG 3.0.43

HMG announcements; Latest HMG-related news, releases, fixes and updates.

Moderator: Rathinagiri

User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

HMG 3.0.43

Post by Rathinagiri »

Hi all,

I am so happy to upload the new test version HMG 3.0.43.

It can be downloaded from site (37.21 MB)

Alternatively you can download from sourceforge.net too.

Code: Select all

- HMG 3.0.43 (Test) 2012/08/30 Changelog:
   - Updated to Harbour 3.2 Nightly Build (18042 2012-08-29)
   - Fixed OnPaint (Thanks to Claudio Soto)
     (HMG can now set a background image in a window with the ON_PAINT event.)
   - New Sample Wallpaper (Thanks to Claudio Soto)
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMG 3.0.43

Post by esgici »

Thanks a lot Diamond Rathinagiri and Dr. Claudio Soto :)

Happy HMG'ing :D

Best regards
Viva INTERNATIONAL HMG :D
User avatar
danielmaximiliano
Posts: 2611
Joined: Fri Apr 09, 2010 4:53 pm
Location: Argentina
Contact:

Re: HMG 3.0.43

Post by danielmaximiliano »

Gracias Rathi:

como siempre tengo que descargar desde :

http://sourceforge.net/projects/hmg/fil ... irror=ufpr

algo debe suceder en mi maquina o mi ISP (Speedy - Telefonica.com.ar)
30.43.jpg
30.43.jpg (27.27 KiB) Viewed 8417 times
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: HMG 3.0.43

Post by Rathinagiri »

Yes, for somebody download from HMGForum site is not complete because of unknown reasons. That's why I have uploaded in SourceForge.net also.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
srvet_claudio
Posts: 2193
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: HMG 3.0.43

Post by srvet_claudio »

Thanks Rathi.
Regards,
Claudio.
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
IMATECH
Posts: 188
Joined: Sun May 27, 2012 9:33 pm
Location: Brazil: Goiânia-GO.

HMG 3.0.43 - Problems HMG messages/translations

Post by IMATECH »

Hi Rathinagiri !



Problems on HMG messages/translations persist...


Because now in Harbour 3.2x When select Languages we can use any codepage...
Set_Language Return value as: "language.codepage" (and HMG need to code for correc language and CP Messages Show )
*** Return expected for HMG is only "Language" ( ES, PT, EN, Etc...)



Samples for Portuguese Language ( I spect a value of: "pt.PT850" ):

REQUEST HB_LANG_PT
REQUEST HB_CODEPAGE_PT850


HB_LANGSELECT( 'PT', "PT850" ) // Result is: pt.PT850
HB_LANGSELECT( 'pt-BR', "PT850" ) // Result is: pt.PT850
HB_LANGSELECT( hb_UserLang(), "PT850" ) // Result is: pt.PT850

Use of hb_UserLang() is the reccomended way :)



files to fix:

i_lang.ch

Code: Select all

* Sample
Line(51): #translate SET LANGUAGE TO PORTUGUESE => _HMG_SYSDATA \[ 211 \] := '  ' ; REQUEST HB_LANG_PT ; HB_LANGSELECT( "PT" ) ; InitMessages()
need  change to
Line(51): #translate SET LANGUAGE TO PORTUGUESE => _HMG_SYSDATA \[ 211 \] := '  ' ; REQUEST HB_LANG_PT ; HB_LANGSELECT( hb_UserLang(), "PT850" ) ; InitMessages()

h_controlmisc.prg

Code: Select all

* Sample
Line(5585)     case cLang == "PT"
need  change to
Line(5585)     case cLang == "pt.PT850"


h_init.prg

Code: Select all

* Sample
Line(2278)     case cLang == "PT"
need  change to
Line(2278)     case cLang == "pt.PT850"


h_windows.prg

HFCL\Source\gridprint.prg

Code: Select all

* Sample
Line(3114)     case cLang == "PT"
need  change to
Line(3114)     case cLang == "pt.PT850"




Best regards
M., Ronaldo

By: IMATECH

Imation Tecnologia
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMG 3.0.43

Post by esgici »

Hi Rathi
rathinagiri wrote:Hi all,

I am so happy to upload the new test version HMG 3.0.43.

It can be downloaded from site (37.21 MB)

Alternatively you can download from sourceforge.net too.

Code: Select all

- HMG 3.0.43 (Test) 2012/08/30 Changelog:
   - Updated to Harbour 3.2 Nightly Build (18042 2012-08-29)
   - Fixed OnPaint (Thanks to Claudio Soto)
     (HMG can now set a background image in a window with the ON_PAINT event.)
   - New Sample Wallpaper (Thanks to Claudio Soto)
Again, thanks to this new release :)

By the way, downloaded from HMG site with no problem.

Hi Claudio

Special thanks to you; first you made us free from two (old) problems: regarding your sample, now we can change back-ground image of a form and overlap any control over the image; this is important improvement; thanks again :)

By the way, "sami" is name of your cute cat ? (this is frequently used name in my country) :)

Happy HMG'ing :D
Viva INTERNATIONAL HMG :D
User avatar
srvet_claudio
Posts: 2193
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: HMG 3.0.43

Post by srvet_claudio »

esgici wrote:Hi Claudio

Special thanks to you; first you made us free from two (old) problems: regarding your sample, now we can change back-ground image of a form and overlap any control over the image; this is important improvement; thanks again

By the way, "sami" is name of your cute cat ? (this is frequently used name in my country)
Thanks Esgici for your words.
Yes, Sami is the name of my cat.
Best regards,
Claudio.
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
IMATECH
Posts: 188
Joined: Sun May 27, 2012 9:33 pm
Location: Brazil: Goiânia-GO.

Re: HMG 3.0.43

Post by IMATECH »

Hi Rathi :)


Any comment about my previous post !



and



Why exist this deprecated, unnecessary and problematic command on end of file: H_REPORT.PRG ( line 814 ) ?

Code: Select all


#include "tprint.prg"

Please: remove it from source ( H_REPORT.PRG line 814 )


Best Regards
Last edited by IMATECH on Fri Aug 31, 2012 11:51 pm, edited 2 times in total.
M., Ronaldo

By: IMATECH

Imation Tecnologia
User avatar
danielmaximiliano
Posts: 2611
Joined: Fri Apr 09, 2010 4:53 pm
Location: Argentina
Contact:

Re: HMG 3.0.43

Post by danielmaximiliano »

Chacal.GO wrote:

Code: Select all

#include "tprint.prg"
Best Regards
Olá Ronaldo :

Algunos entornos de desarollo tienen herramientas de refactoria, la cual si eliminas un methodo, variables o otro elemento del proyectos este tambien cambia.

puede quedar a pesar que uno lee y repasa el codigo y desaparece a simple vista.

Alguns ambientes de desenvolvimento têm ferramentas de refatoração, que se você remover um elemento, metodo variável ou outra desse projeto também muda.

pode ser, apesar de ler e revisar o código e desaparece a olho nu.
TextCrawler_2012-08-31_18-00-35.jpg
TextCrawler_2012-08-31_18-00-35.jpg (99.68 KiB) Viewed 8300 times
tprint.jpg
tprint.jpg (53.83 KiB) Viewed 8300 times
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
Post Reply