From: "The Nomad" <tnomad@digital.net>
Subject: Re: [delphi] Delphi Cursors
Date: Mon, 24 Jul 1995 09:29:29 +0000

> Now if I create an image component (TImage), change the Form1MouseDown event
> to TImage1.MouseDown, with the line: Form1.Image1.Cursor := crHourGlass, the
> cursor will only change shape when the mouse button is released. :-<<<<

Ahhhh.  I use:

 GetCursorPos(pt);
 SetCursorPos(pt.x, pt.y);

When the cursor is set to the position it is already in, it doesn't 
move, but the cursor will be set properly.
************************************
*           The Nomad              *
*        tnomad@digital.net        *
************************************

