HMG 3.4.1

HMG Unicode versions 3.1.x related

Moderator: Rathinagiri

Post Reply
jorge.posadas
Posts: 183
Joined: Mon May 19, 2014 7:43 pm
DBs Used: DBF, SQLite, MS-SQL, ACCESS, MariaDB (en proceso)
Location: Morelia, Mich. México
Contact:

Re: HMG 3.4.1

Post by jorge.posadas »

Claudio

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

POSADAS SOFTWARE
Jorge Posadas Ch.
Programador independiente
Morelia, Mich.
M é x i c o .
Movil +52 44 3734 1858
SKYPE: jorge.posadasch
Email: posoft@gmx.com
User avatar
Roberto Lopez
HMG Founder
Posts: 4012
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 3.4.1

Post 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!
Attachments
netio2.7z
(7.31 KiB) Downloaded 265 times
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
srvet_claudio
Posts: 2220
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: HMG 3.4.1

Post 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
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
Pablo César
Posts: 4059
Joined: Wed Sep 08, 2010 1:18 pm
Location: Curitiba - Brasil

HMG 3.4.1

Post 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.
HMGing a better world
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
User avatar
srvet_claudio
Posts: 2220
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: HMG 3.4.1

Post 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.
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
User avatar
Pablo César
Posts: 4059
Joined: Wed Sep 08, 2010 1:18 pm
Location: Curitiba - Brasil

HMG 3.4.1

Post by Pablo César »

Voy adicionar los links en el primer mensaje asi queda registrado todos los patch recurrentes. Ok ?
HMGing a better world
"Matter tells space how to curve, space tells matter how to move."
Albert Einstein
User avatar
Roberto Lopez
HMG Founder
Posts: 4012
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 3.4.1

Post 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.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Rathinagiri
Posts: 5480
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: HMG 3.4.1

Post by Rathinagiri »

I will try to do that Roberto.
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
Roberto Lopez
HMG Founder
Posts: 4012
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMG 3.4.1

Post 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).
Attachments
Image1.png
Image1.png (40.9 KiB) Viewed 5005 times
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
bpd2000
Posts: 1207
Joined: Sat Sep 10, 2011 4:07 am
Location: India

Re: HMG 3.4.1

Post 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
Attachments
err.PNG
err.PNG (34.67 KiB) Viewed 4997 times
BPD
Convert Dream into Reality through HMG
Post Reply