Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Button aus and. Anwendung klicken geht nicht?! (https://www.delphipraxis.net/30319-button-aus-anwendung-klicken-geht-nicht.html)

Portabella 23. Sep 2004 13:55


Button aus and. Anwendung klicken geht nicht?!
 
Hallo,

ich versuche gerade, in einem anderen Fenster bzw. in einer MessageBox eines anderen Fenstern einen Button zu Klicken. Folgenden Code habe ich dazu gefunden:

Code:
function TForm1.ClickButton(ParentWindow: Hwnd; ButtonCaption: string): Boolean;
var
  SL: TStringList;
  H: hWnd;
begin
  SL := TStringList.Create;
  try
    SL.AddObject(ButtonCaption, nil); // First item in list is text to find
    EnumChildWindows(ParentWindow, @EnumChildProc, Longint(SL));
    H := 0;
    case SL.Count of
      1: ShowMessage('Window text not found.');
      2: H := hWnd(SL.Objects[1]);
      else
        ShowMessage('Ambiguous text detected.');
    end;
  finally
    SL.Free;
  end;
  Result := H <> 0;
  if Result then PostMessage(H, BM_CLICK, 0, 0);
end;

FUNCTION TForm1.EnumChildProc(Wnd: hWnd; SL: TStrings): BOOL; stdcall;
VAR
   szFull: array[0..MAX_PATH] of Char; //Buffer for window caption
BEGIN
   Result := Wnd <> 0;
   if Result then
   BEGIN
      GetWindowText(Wnd, szFull, SizeOf(szFull)); // put window text in buffer
      if (Pos(SL[0], StrPas(szFull)) > 0) and // Test for text
          (SL.IndexOfObject(TObject(Wnd)) < 0) then // Test for duplicate handles
         SL.AddObject(StrPas(szFull), TObject(Wnd)); // Add item to list
      EnumChildWindows(Wnd, @EnumChildProc, Longint(SL)); //Recurse into child windows
   END;
END;
Allerdings kommt beim Compilieren eine Fehlermeldung: Variable required
und zwar an folgender Stelle:

Code:
EnumChildWindows(Wnd, @EnumChildProc, Longint(SL)); //Recurse into child windows
Kann mir jemand weiter helfen? Wäre sehr dankbar.

Gruß, Diana

scp 23. Sep 2004 14:03

Re: Button aus and. Anwendung klicken geht nicht?!
 
1. die EnumChildProc() sollte vor die andere.
2. EnumChildProc() sollte nicht zum Form gehören, dann gehts:
Delphi-Quellcode:
FUNCTION EnumChildProc(Wnd: hWnd; SL: TStrings): BOOL; stdcall;

Portabella 23. Sep 2004 14:06

Re: Button aus and. Anwendung klicken geht nicht?!
 
Danke.
Wo deklariere ich den Methode dann, dass sie nicht zur Form gehört?

scp 23. Sep 2004 14:08

Re: Button aus and. Anwendung klicken geht nicht?!
 
Du lässt einfach das TForm1. weg und den Eintrag unter
Delphi-Quellcode:
type
  TForm1 = class(TForm)
    //hier
  private
lässt du weg.

Portabella 23. Sep 2004 14:11

Re: Button aus and. Anwendung klicken geht nicht?!
 
Suuuuuuuuper! Das war's! Jetzt klappt es!

Vielen Dank,

Diana


Alle Zeitangaben in WEZ +1. Es ist jetzt 22:06 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz