Re: HMG.3.4.2
Posted: Wed Sep 23, 2015 2:45 am
Dwonload from: claudio/MinGW-64%20and%20Harbour-64%20( ... 11-24).rarSteed wrote:Please , Harbour 64bits, files.+1
Thanks in advance
Exclusive forum for HMG, a Free / Open Source xBase WIN32/64 Bits / GUI Development System
http://mail.hmgforum.com/
Dwonload from: claudio/MinGW-64%20and%20Harbour-64%20( ... 11-24).rarSteed wrote:Please , Harbour 64bits, files.+1
Thanks in advance
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.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
Thanks a lotDwonload from: claudio/MinGW-64%20and%20Harbour-64%20( ... 11-24).rar
Please change the original function: SETGRIDQUERYDATA (file c_grid.c, line 733) for this: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
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
}
Donesrvet_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 }