Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Use animated cursors
Use LoadCursorFromFile procedure to set your cursor in a list of cursores.Use for this Cursors and Cursor properties of TScreen class.
procedure TForm1.FormCreate(Sender: TObject);
const
MyCursor=1;
begin
Screen.Cursors[MyCursor]:=LoadCursorFromFile('C:\Shuttle.ani');
Screen.Cursor:=MyCursor;
end;
-
More for developers