const
crMyCursor = 5;
procedure TForm1.FormCreate(Sender: TObject);
begin
Screen.Cursors[crMyCursor] := LoadCursor(HInstance, 'NewCursor');
Cursor := crMyCursor;
end;
Свой курсор
Как сделать так, чтобы в моей программе использовался мой курсор?
Цитата:
Originally posted by Vano
Как сделать так, чтобы в моей программе использовался мой курсор?
Как сделать так, чтобы в моей программе использовался мой курсор?
Не задавать шлупых вопросов и хоть иногда читать справку.
This example shows how to add custom cursors to an application. It assumes that a custom cursor with the name NewCursor has been added to the resources (.RES file) of the application. You can add the cursor using the image editor. (Tools | Image Editor)
The following code makes this cursor available to the application via the constant crMyCursor, and sets it as the global cursor to the application.
Код:
Подменяем стандартные часы:
Screen.Cursors[crHourGlass]:=LoadCursorFromFile('drum.ani');
И вызываем в программе:
Screen.Cursors:=crHourGlass;