Hola
Sobre el tema de "Finger.cur" solo sobre los Buttons
lo ha solucionado el amigo Dr.Claudio
http://hmgforum.com/viewtopic.php?f=5&t ... 795#p29795" onclick="window.open(this.href);return false;" onclick="window.open(this.href);return false;
aqui dejo un ejemplo, sobre el tema Buttons basado en el
ejemplo Dr.Claudio
Ímportante
incluir en compilación fichero "finger.cur"
Saludos
Mustafa
*----------------------------------------------------------------*
Hello
On the subject of "Finger.cur" only on Buttons
Fixed it Dr.Claudio friend
http://hmgforum.com/viewtopic.php?f=5&t ... 795#p29795" onclick="window.open(this.href);return false;" onclick="window.open(this.href);return false;
here is a example on the theme based Buttons
Dr. Claudio example
important
compilation include file "finger.cur"
regards
Mustafa
#include "hmg.ch"
Function Main
DEFINE WINDOW Win_1 ;
AT 0,0 ;
WIDTH 400 ;
HEIGHT 400 ;
TITLE 'Hello World!' ;
MAIN
@ 50, 50 BUTTON Button_1 CAPTION "Hello-1" ACTION MsgInfo ()
@ 50, 230 BUTTON Button_2 CAPTION "Hello-2" ACTION MsgInfo ()
END WINDOW
* Win_1.Cursor := "finger.cur"
SETWINDOWCURSOR (Win_1.Button_1.Handle, "finger.cur")
CENTER WINDOW Win_1
ACTIVATE WINDOW Win_1
Return