We have c/s application. The server processes records, our customer wants
to see which record is being processed from the client side.
So far , so good ...
We have a datawindow on a window with a timer event , it's being update
every second. Problem is the pointer (hourglass) is every time shown when
there's an update done on the dw. Is there a way to put the pointer off ?
The datawindow at runtime is now flashy and everytime the pointer =
hourglass , then no pointer , hourglass ,no pointer ... it's kinda
irritating.
Any solutions ? Idea's ?
TIA
John
That's an example to avoid the cursor from changing ... i am looking for an
example where i turn the pointer off , so no pointer.
Maciek.
Pointer lpt_OriginalPointer
lpt_OriginalPointer = SetPointer( lpt_OriginalPointer )
SetCapture( handle( name of window goes here ) )
at the end of the code you are running put:
ReleaseCapture()
SetPointer( lpt_OriginalPointer )
Function boolean ReleaseCapture() LIBRARY "user32.dll"
Function ulong SetCapture(ulong a) LIBRARY "user32.dll"
"Maciej Sawicki" <Maciej....@mobileis.com.pl> wrote in message
news:3C04DE69...@mobileis.com.pl...