I have the app cursor loaded and a standard arrow cursor loaded:
Code: Select all
Global ighSysDefaultCursorNORMAL.i = LoadCursor_(1, #IDC_ARROW)
Global ighCrossCursor.i = LoadCursor_(GetModuleHandle_(0), "Cursor01") ;app cursor (special cross-hair)Code: Select all
SetSystemCursor_(ighCrossCursor,#OCR_NORMAL)Now the User chooses to toggle the normal arrow cursor back on:
Code: Select all
SetSystemCursor_(ighSysDefaultCursorNORMAL,#OCR_NORMAL)It seems that I'm nearly there, but nowhere near the correct solution.........

