私はこのコードを持っています:
HWND WindowHandle;
WindowHandle = FindWindowA( WindowClass, WindowName );
if( WindowHandle != NULL)
{
// here I want to populate a listbox with the window's information like
// its process name and PID, executable file name, and its window title.
}
SendMessage();
とを使用してウィンドウ タイトルを取得する方法は既に知っていますが、そのWM_GETTEXT
プロセス名と PID、および実行可能ファイルの場所と名前を取得する方法を知りたいです。
誰でも私を助けることができますか?
私は C++ MFC を使用していることに注意してください。