procedure Form1.Button1Click(Sender: TObject);
begin
// 모래시계 모양
Screen.Cursor:=crHourGlass;
// 정상 커서
Screen.Cursor:=crDefault;
end;
https://pierrot-98.tistory.com/42
[델파이] 마우스 커서 바꾸기
1 2 3 4 5 6 7 8 procedure Form1.Button1Click(Sender: TObject); begin // 모래시계 모양 Screen.Cursor:=crHourGlass; // 정상 커서 Screen.Cursor:=crDefault; end; Colored by Color Scripter cs 기본적으로 많이쓰는 커서 모양 여러 개가
pierrot-98.tistory.com
반응형
'Delphi' 카테고리의 다른 글
| [Delphi] 배열을 문자열로 변환 (0) | 2023.03.03 |
|---|---|
| [Delphi] DB Grid 에서 현재 선택된 Row Number (0) | 2022.12.15 |
| [Delphi] Save string into Text File (0) | 2022.11.03 |
| [Delphi] 특정 서비스 프로그램 실행여부 확인 (0) | 2022.10.13 |
| [Delphi] PC Sound Control (0) | 2022.10.08 |