How can I change the mousepointer when the mouse is
over a certain region of my child dialog?
The following works, but only for very gross mouse
movements and then the new pointer usually reverts back
to the default.
Also, is there a way to make the mouse into a html-like hyperlink
hand. The region contains a list of files. Clicks on a file name
shell out to notepad.
Thanks.
------------------
------------------
over a certain region of my child dialog?
The following works, but only for very gross mouse
movements and then the new pointer usually reverts back
to the default.
Also, is there a way to make the mouse into a html-like hyperlink
hand. The region contains a list of files. Clicks on a file name
shell out to notepad.
Thanks.
Code:
CASE %WM_MOUSEMOVE LOCAL ztext AS STRING, x& x&=LOWRD(CBLPARAM) IF x&>22 AND x&<200 THEN MOUSEPTR 10 zText = "Mouse Position:" + STR$(LOWRD(CBLPARAM)) + ","+STR$(HIWRD(CBLPARAM)) ELSE ztext="Not hot" MOUSEPTR 1 END IF SetWindowText hdlg, BYCOPY zText FUNCTION = 0 EXIT FUNCTION
------------------
------------------
Comment