Page 14 of 15

Re: HMG 3.1.4 (Test)

Posted: Sat Jul 20, 2013 12:33 am
by esgici
klauskugel wrote:...
Mysql works....
Congrats Klaus;

your work looks very mature and impressive 8-)

Thanks to who made possible this wonderful tools and you, wonderful followers :D

Re: HMG 3.1.4 (Test)

Posted: Sat Jul 20, 2013 12:41 am
by Rathinagiri
It is really a great news for me.

Again, can you please check up whether 'set navigation extended' working?

Re: HMG 3.1.4 (Test)

Posted: Tue Jul 23, 2013 2:00 pm
by klauskugel
>>> Again, can you please check up whether 'set navigation extended' working?

Sure, it works under wine1.6 as I expected.
It hopped through all fields and buttons and back to the beginning.

Nice done.

Greets from Germany
klauskugel


P.S. I'm just hoping to find a EDITBOX.DBLClICK <ActionProcedure>

ONGOTFOCUS <ActionProcedure>
ONLOSTFOCUS <ActionProcedure>
ONCHANGE <ActionProcedure>
Would be great to find this Event sometime.
Just to elegantly start a Search Form or Something like this.

Re: HMG 3.1.4 (Test)

Posted: Tue Jul 23, 2013 3:39 pm
by srvet_claudio
klauskugel wrote: P.S. I'm just hoping to find a EDITBOX.DBLClICK <ActionProcedure>

ONGOTFOCUS <ActionProcedure>
ONLOSTFOCUS <ActionProcedure>
ONCHANGE <ActionProcedure>
Would be great to find this Event sometime.
Just to elegantly start a Search Form or Something like this.
Hi Klauskugel.
In the next release (HMG.3.1.5) is possible to process the DBLCLICK event.

Code: Select all

CREATE EVENT PROCNAME EditBox_DBLCLICK()  HWND Form_1.Edit_1.HANDLE  STOREINDEX nIndex
EventProcessAllHookMessage (nIndex, .T.)

Code: Select all

Function EditBox_DBLCLICK()
LOCAL nIndex := GetControlIndexByHandle (EventHWND())
   IF nIndex > 0 .AND. GetControlTypeByIndex (nIndex) == "EDIT"
      #define WM_LBUTTONDBLCLK 515
      IF EventMSG() == WM_LBUTTONDBLCLK
         MsgInfo ("DBLCLICK")
      ENDIF
   ENDIF
Return NIL
Best regards,
Claudio.

Re: HMG 3.1.4 (Test)

Posted: Tue Jul 23, 2013 8:24 pm
by klauskugel
Hi Doc,
you're hell.

Wonderfulllllll.
This is the missing part to replace VFP fully.

This is really great.

Greetings from Germany
klauskugel

Re: HMG 3.1.4 (Test)

Posted: Wed Jul 24, 2013 2:37 am
by Rathinagiri
:)

Yes, it is really a great implementation.

Re: HMG 3.1.4 (Test)

Posted: Wed Jul 24, 2013 5:02 am
by bpd2000
srvet_claudio wrote: In the next release (HMG.3.1.5) is possible to process the DBLCLICK event.
Thank you Claudio I was also eagerly waiting for DBLCLICK event

Re: HMG 3.1.4 (Test)

Posted: Mon Jul 29, 2013 10:40 am
by danielmaximiliano
Hola a todos : Desde hace tiempo sucede que el IDE tiende a borrar los archivos de recursos (.RC) y de configuraciĆ³n (.HBC) dentro de mi maquina y esto es engorroso; por suerte siempre hago copias backup con el editor Crimsom Esmerald.
No soy muy amante de usar el IDE Unicode para generar formularios con el y menos compilar por este inconveniente; no sucede esto con el IDE Ansi.
pense hace tiempo que era problema de mi instalacion de Windows y la cantidad enorme de instalaciones de otros programas para pruebas de software asi que procedi a eliminar la particion de windows; crear una nueva y utilizar HP Recovery para reinstalar Windows OEM desde cero ( 0 ).
sin ningun antivirus y Update de Windows procedi a instalar HMG.3.1.4 (test) y probar de nuevo el IDE Unicode presentando los mismo inconveniente antes mencionado, actualizando Windows e instalando todos los programas necesarios para el uso de mi Notebook el problema persiste.
puede el IDE Unicode no tocar estos archivos sino no hay modificacion de estos?
desde ya gracias por el trabajo y dedicacion sobre HMG.

Translate Google
Hi all: For some time it happens that the IDE tends to erase the resource files (. RC) and configuration (. HBC) in my machine and this is cumbersome, luckily I always make backup copies with the publisher Crimsom Emerald.
I'm not very fond of using the Unicode IDE to generate forms with and least compile for this inconvenience, not so with the IDE Ansi.
I thought it was problem while my Windows installation and the enormous amount of facilities for testing other software programs so proceeded to remove the windows partition, create a new and used HP Recovery to reinstall Windows OEM from scratch (0) .
without any antivirus and Windows Update procedure to install HMG.3.1.4 (test) and try again presenting the same IDE Unicode aforementioned drawback, updating Windows and installing all the software needed to use my Notebook the problem persists.
Unicode IDE can not touch these files but no modification of these?
from already thank you for the work and dedication of HMG

Windows 7 Home Premiun 64, Notebook HP4530S Core i3 4GB.

Re: HMG 3.1.4 (Test)

Posted: Mon Jul 29, 2013 1:11 pm
by Rathinagiri
I am also having the same problem as Daniel explained.

Re: HMG 3.1.4 (Test)

Posted: Mon Jul 29, 2013 9:39 pm
by srvet_claudio
danielmaximiliano wrote: For some time it happens that the IDE tends to erase the resource files (. RC) and configuration (. HBC) in my machine and this is cumbersome
I will check all reads and writes in files that makes of the IDE-Unicode.