Page 1 of 1

how can i change the sand-glass cursor?

Posted: Thu 25 Mar 2010 08:10
by bayman
it's really ugly

Posted: Thu 25 Mar 2010 10:44
by Dimon
To disable cursor changing you should set the ChangeCursor variable to False in the initialization section of one of the units in your project. This varible is declared in the DBAccess unit.

Or you can create procedures that will set the needed cursor and assign it to the StartWaitProc and StopWaitProc variables. These variables are declared in the MemData unit.

Code: Select all

var
  StartWaitProc: procedure;
  StopWaitProc: procedure;

Posted: Thu 25 Mar 2010 12:46
by bayman
thank you for your response :D