Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » Borland C++ Builder » Caption eines anderen Programmes auslesen

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
11.10.2002, 20:58 Uhr
tobitobsen100



Abend,

Wie kann ich die Caption eines Externen Programmes auslesen ??
Geht das, und wenn ja wie??
ich will, das Edit1->Text (Oder Label oder RichEdit ect.) Die Aktuelle Caption des IExplorers anzeigt.
könnt ihr mir sagen, wei das geht???

Danke im Vorraus,
--
___________________________________
Tobi
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
12.10.2002, 10:30 Uhr
void*
Generic Pointer
(Operator)


Hallo!

Das ist noch optimierbar, aber es funzt:


C++:
  HWND w=FindWindowEx(NULL, NULL, NULL, NULL);
  char caption[512];
  while(w)
  {
      GetWindowText(w, caption, 512);
    w=GetNextWindow(w, GW_HWNDNEXT);
    if(strstr(caption, "Microsoft Internet Explorer"))
      MessageBox(NULL, caption, "Hurra", MB_ICONINFORMATION);

  }



Gruß
void*
--
Gruß
void*
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
12.10.2002, 22:49 Uhr
tobitobsen100



Danke void* !!!
Genau so brauch ich den Code !!!

Nochmal Danke,
--
___________________________________
Tobi
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ Borland C++ Builder ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: