VCSetCursorEx


Version:

3.0

Description:

Sets the default cursor.

Declaration:

 

C/C++

extern "C" void WINAPI VCSetCursorEx(short* iError, HCURSOR hC);

Delphi

procedure VCSetCursorEx(var iError: smallint; hC: Longint); stdcall;

ActiveX/COM

Sub SetCursorEx(ByVal hC As Long)

Parameters:

hC - handle to the cursor

Notes:

The call VCSetCursor restricts you to the default Windows cursors. VCSetCursorEx allows you to load a custom cursor that has been created as a resource - a Match Tool cursor is one example. User is responsible for setting cursor back to Null and destroying cursor.

See Also:

VCSetCursor