Page 6 of 20

Re: HMG 3.4.1

Posted: Wed Jul 08, 2015 6:28 pm
by jorge.posadas
Claudio

Muchas gracias por la ayuda, y efectivamente borrando el HMG.ini con eso solucionó el problema,

Re: HMG 3.4.1

Posted: Wed Jul 08, 2015 11:25 pm
by Roberto Lopez
Hi All (Specially Claudio :)),

I'm still working on the NETIO demo that includes a virtual Grid now.

It works perfect when built with 3.0.40, but building it with 3.4.1 it shows garbage on grid from the second query (the first query works ok).

I've not tested with other versions.

The OS is XP PRO SP3 32 BITS.

What am I missing?

Thanks!

Re: HMG 3.4.1

Posted: Thu Jul 09, 2015 4:30 am
by srvet_claudio
Roberto Lopez wrote:Hi All (Specially Claudio :)),

I'm still working on the NETIO demo that includes a virtual Grid now.

It works perfect when built with 3.0.40, but building it with 3.4.1 it shows garbage on grid from the second query (the first query works ok).

I've not tested with other versions.

The OS is XP PRO SP3 32 BITS.

What am I missing?

Thanks!
Hi Roberto,

Please change in file c_grid.c (line 135) the original LISTVIEW_SETITEMCOUNT function for this version:

Code: Select all

HB_FUNC ( LISTVIEW_SETITEMCOUNT )
{
   HWND hWnd       = (HWND) HMG_parnl (1);
   INT  nItemCount = (INT) hb_parni (2);
   
   if ( (GetWindowLongPtr (hWnd, GWL_STYLE) & LVS_OWNERDATA) == LVS_OWNERDATA )
      ListView_SetItemCountEx (hWnd, nItemCount, LVSICF_NOINVALIDATEALL);
   else
      ListView_SetItemCount (hWnd, nItemCount);
}
PS: the behavior of LISTVIEW_SETITEMCOUNT changed when change the version of common controls used

HMG 3.4.1

Posted: Thu Jul 09, 2015 12:43 pm
by Pablo César
Claudio, podemos considerar este como un segundo PATCH al 3.4.1 ?

Con todo respecto Claudio: como te aprecio amigo !

Sos el unico uno de los pocos que trabaja, construye, ayuda y mejora algo sin decir nada...

Mi reconocimiento, mi agradecimiento y mi más respectuoso sentimiento de aprecio amigo !

Sos un genio ! Muchas gracias.

Re: HMG 3.4.1

Posted: Thu Jul 09, 2015 1:45 pm
by srvet_claudio
Pablo César wrote:Claudio, podemos considerar este como un segundo PATCH al 3.4.1 ?
Sí.
Pablo César wrote:Con todo respecto Claudio: como te aprecio amigo !

Sos el unico uno de los pocos que trabaja, construye, ayuda y mejora algo sin decir nada...

Mi reconocimiento, mi agradecimiento y mi más respectuoso sentimiento de aprecio amigo !
Muchas gracias.

HMG 3.4.1

Posted: Thu Jul 09, 2015 1:51 pm
by Pablo César
Voy adicionar los links en el primer mensaje asi queda registrado todos los patch recurrentes. Ok ?

Re: HMG 3.4.1

Posted: Thu Jul 09, 2015 3:40 pm
by Roberto Lopez
Hi All,

When I'm login, I'm landing at forum index (not portal) so, the announcements (like new versions) are not visible.

Maybe the landing page should be portal, to assure that anyone will notice about new releases and other important news.

Thanks.

Re: HMG 3.4.1

Posted: Thu Jul 09, 2015 3:45 pm
by Rathinagiri
I will try to do that Roberto.

Re: HMG 3.4.1

Posted: Thu Jul 09, 2015 3:51 pm
by Roberto Lopez
srvet_claudio wrote:
PS: the behavior of LISTVIEW_SETITEMCOUNT changed when change the version of common controls used
I've applied the patch and the problem remains (note the 'H's and the '@'s).

Re: HMG 3.4.1

Posted: Thu Jul 09, 2015 4:51 pm
by bpd2000
Roberto Lopez wrote:
srvet_claudio wrote:
PS: the behavior of LISTVIEW_SETITEMCOUNT changed when change the version of common controls used
I've applied the patch and the problem remains (note the 'H's and the '@'s).
After patch applied on my computer, attached is the result