HMG.3.4.2

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:

Re: HMG.3.4.2

Post by srvet_claudio »

Steed wrote:
+1
Please , Harbour 64bits, files.

Thanks in advance
Dwonload from: claudio/MinGW-64%20and%20Harbour-64%20( ... 11-24).rar
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
srvet_claudio
Posts: 2193
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: HMG.3.4.2

Post by srvet_claudio »

serge_girard wrote:Rathi,

Some strange behaviour which I noticed in earlier versions: when pressing F5 in the IDE it starts compiling.
Often when I press in F5 in another application (refresh) the compiler starts as if the IDE stays active all the time.

Any idea what's wrong?

Serge
The problem is that IDE is made with many windows and in all windows is active ON KEY F5 and others hotkey, maybe you think are in once application but in reality is one of window of IDE active.

The solution is deactivate all hotkey and only you work with the buttons of the IDE, the decision is of you?
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
mol
Posts: 3723
Joined: Thu Sep 11, 2008 5:31 am
Location: Myszków, Poland
Contact:

Re: HMG.3.4.2

Post by mol »

I'm very bounded with F5 and F8 key. but, from some time, F8 doesn't build with debug, but works like F5.
User avatar
serge_girard
Posts: 3167
Joined: Sun Nov 25, 2012 2:44 pm
DBs Used: 1 MySQL - MariaDB
2 DBF
Location: Belgium
Contact:

Re: HMG.3.4.2

Post by serge_girard »

Thanks Claudio for the explanation. I can live with it.

Serge
There's nothing you can do that can't be done...
User avatar
quartz565
Posts: 667
Joined: Mon Oct 01, 2012 12:37 pm
Location: Thessaloniki, Greece
Contact:

Re: HMG.3.4.2

Post by quartz565 »

Thank you Claudio and Rathinagiri for new version !
Best Regards,
Nikos.

os: Windows Server 2019 - 64
User avatar
Steed
Posts: 427
Joined: Sat Dec 12, 2009 3:40 pm

Re: HMG.3.4.2

Post by Steed »

User avatar
andyglezl
Posts: 1461
Joined: Fri Oct 26, 2012 7:58 pm
Location: Guadalajara Jalisco, MX
Contact:

Re: HMG.3.4.2

Post by andyglezl »

Gracias a todos los involucrados !
------------------------------------------
Thanks to everyone involved !
Andrés González López
Desde Guadalajara, Jalisco. México.
User avatar
srvet_claudio
Posts: 2193
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: HMG.3.4.2

Post by srvet_claudio »

EduardoLuis wrote:Hi Rathi and Claudio:

I don't know if this issue becomes from an incorrect instalation or something else.-
Just for testing new version, I've compiled GRID_24 sample, and notice to issues:

1) Any cell of column 1 can't be focoused (mouse or keyboard).-
2) When you choose any cell of rest columns Win system error is noticed.-

The same issues happends on GRID_25, GRID_26, not on grid samples with arrays.-

After, i test some of my app and this happens again (if you compile any of this with version 3.40 all works fine).-

Just for the record, this test were maid under WIN XP SP3.-
With regards.
Eduardo
Please change the original function: SETGRIDQUERYDATA (file c_grid.c, line 733) for this:

Code: Select all

HB_FUNC ( SETGRIDQUERYDATA )
{
   LPARAM lParam = (LPARAM) HMG_parnl (1);
   LV_DISPINFO* pDispInfo = (LV_DISPINFO*) lParam;
   
   if( hb_iswinvista() )   // Is Win Vista or newer   // ADD3, September 2015
      lstrcpyn(pDispInfo->item.pszText, (TCHAR*) HMG_parc (2), pDispInfo->item.cchTextMax);   // ADD3, July 2015
   else
      pDispInfo->item.pszText = (TCHAR*) HMG_parc (2); // Is Win XP
}
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
bpd2000
Posts: 1207
Joined: Sat Sep 10, 2011 4:07 am
Location: India

Re: HMG.3.4.2

Post by bpd2000 »

srvet_claudio wrote: Please change the original function: SETGRIDQUERYDATA (file c_grid.c, line 733) for this:

Code: Select all

HB_FUNC ( SETGRIDQUERYDATA )
{
   LPARAM lParam = (LPARAM) HMG_parnl (1);
   LV_DISPINFO* pDispInfo = (LV_DISPINFO*) lParam;
   
   if( hb_iswinvista() )   // Is Win Vista or newer   // ADD3, September 2015
      lstrcpyn(pDispInfo->item.pszText, (TCHAR*) HMG_parc (2), pDispInfo->item.cchTextMax);   // ADD3, July 2015
   else
      pDispInfo->item.pszText = (TCHAR*) HMG_parc (2); // Is Win XP
}
Done
Thank you Dr. Claudio
BPD
Convert Dream into Reality through HMG
EduardoLuis
Posts: 682
Joined: Tue Jun 04, 2013 6:33 pm
Location: Argentina

Re: HMG.3.4.2

Post by EduardoLuis »

Hi Claudio:

Tested and the issue was solved; now works fine.-
Just for the records and for other friends, rebuild libraries (ansi and Unicode).-
Claudio Thanks for all your great efforts.-
With regards.
Eduardo
Post Reply