Delphi .NET (2) Database (71) Delphi IDE (89) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280)
Exchange Links About this site Links to us 
New related comments Number of comments in the last 48 hoursAccess a password-saved paradox database without knowing the password 1 new comments
|
Replace the SQL wait cursor
This article has not been rated yet. After reading, feel free to leave comments and rate it.
Question:
How can I suppress the SQL wait cursor? I rather just show the regular hour glass.
Answer:
The cursor displayed during SQL operations is one of Borland's predefined cursors maintained in the global Screen variable. You can either create your own cursor as a resource, load it and assign it to the field in the array, or use the existing hour glass cursor as shown in the code snippet below.
This is an application wide setting, so apply it early e.g. when your main form gets created.  | |  | | Screen.Cursors[crSQLWait] := Screen.Cursors[crHourGlass];
| |  | |  | You don't like the formatting? Check out SourceCoder then!
Comments:
|