Mega Code Archive

 
Categories / Delphi / ADO Database
 

How to Get Rid Of the Annoying SQL Wait Cursor

Title: How to Get Rid Of the Annoying SQL Wait Cursor procedure TForm1.FormCreate(Sender: TObject); begin Screen.Cursors[crSQLWait] := Screen.Cursors[crHourGlass]; // or whatever cursor you would like to replace the SQL hourglass with end;