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* |