![]() |
|
38 פיט - יפלד | |
![]() |
|
ישאר דומע | םיפיטה דומע | רנק ודיע תאמ |
![]() |
?תונולחב םהלש Handle-ה תאו םיצרה תונולחה לכ תמישר תא לבקמ ינא ךיא .EnumWindows תארקנה API-ה תיצקנופב םישמתשמ תונולחה תא הליכמש (List box) המישר לש אמגוד הנה :([DELETE + CTRL + ALT לע םיצחולשכ] תונולח לש "Close program" ומכ שממ) ... function EnumWinProc(Wnd : HWND; frm : TForm1) : Boolean; Export; {$IFDEF Win32} StdCall; {$ENDIF} var WinText : Array[0..255] of Char; begin GetWindowText(Wnd, WinText, 255); Result := True; if (StrPas(WinText) <> '') then frm.ListBox1.Items.Add(StrPas(WinText)); end; procedure TForm1.Button1Click(Sender: TObject); begin EnumWindows(@EnumWinProc, LongInt(Self)); end; ... |