Changeset 68 for branches/Independent/Apps/Test/AppTest.pas
- Timestamp:
- Dec 17, 2024, 11:10:31 PM (4 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Independent/Apps/Test/AppTest.pas
r67 r68 23 23 var 24 24 Handle: THandle; 25 Pos: TPoint; 25 26 begin 26 27 with Context.Api do begin … … 37 38 SetWindowRect(Handle, Bounds(350, 150, 500, 300)); 38 39 SetWindowVisible(Handle, True); 40 41 repeat 42 Pos := GetMousePosition; 43 SetWindowName(Handle, IntToStr(Pos.X) + ', ' + IntToStr(Pos.Y)); 44 Sleep(100 * OneMillisecond); 45 until Terminated; 39 46 end; 40 47 end;
Note:
See TracChangeset
for help on using the changeset viewer.