There are a couple ways of going about this.... try this:
Create a resource file in your app. Add whatever cursors you want that are
custom (There is a pointing finger in the built in graphics from VB you
could use)
Replace the 101 in the below source code with whatever resource number you
have.
Form1.MouseIcon = LoadResPicture(101, vbResCursor)
Form1.MousePointer = vbCustom
Then, to set the mouse back, you can just:
Form1.MousePointer = vbNormal
If you have questions about this, email me. :)
Mike
Quote:
> Hi there,
> can anyone help me on how to change the mouse pointer to a pointing
finger,
> like that on a hyperlink in IE4/5.
> I looked through the available pointers under screen.mousepointer but
> cannot see it.
> Any response gratefully appreciated.
> Andy