How can I use dbChangeMouse(int iCursor)???
I mean use iCursor ???
(((dbChangeMouse
This command will change the cursor that belongs to the mouse pointer. A value of zero uses the applications arrow cursor and a value of one will use the hourglass cursor. Values 2 to 31 are custom cursors that can be specified in the project media section and selected with this command.
Syntax
void dbChangeMouse ( int iCursor ) )))
Please don't suggest me that way:
extern HCURSOR g_ActiveCursor;
HCURSOR hCur = LoadCursorFromFile("MyCur.ANI");
g_ActiveCursor = hCur;
SetCursor(hCur);
this is not works on some PC's correctly.
And dbPasteSprite(i,dbMouseX(),dbMouseY()); - this is not a way at all (specialy in windowed mode).