Page 3 of 21

Re: HMG.3.4.2

Posted: Wed Sep 23, 2015 2:45 am
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

Re: HMG.3.4.2

Posted: Wed Sep 23, 2015 3:07 am
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?

Re: HMG.3.4.2

Posted: Wed Sep 23, 2015 5:51 am
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.

Re: HMG.3.4.2

Posted: Wed Sep 23, 2015 6:38 am
by serge_girard
Thanks Claudio for the explanation. I can live with it.

Serge

Re: HMG.3.4.2

Posted: Wed Sep 23, 2015 12:43 pm
by quartz565
Thank you Claudio and Rathinagiri for new version !

Re: HMG.3.4.2

Posted: Thu Sep 24, 2015 1:11 am
by Steed

Re: HMG.3.4.2

Posted: Thu Sep 24, 2015 5:02 pm
by andyglezl
Gracias a todos los involucrados !
------------------------------------------
Thanks to everyone involved !

Re: HMG.3.4.2

Posted: Thu Sep 24, 2015 11:48 pm
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
}

Re: HMG.3.4.2

Posted: Fri Sep 25, 2015 4:59 am
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

Re: HMG.3.4.2

Posted: Fri Sep 25, 2015 1:02 pm
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