How to get main window handle from process id?
I want to bring this window to the front.
It works well in "Process Explorer".
feedback
|
|
I don't believe Windows (as opposed to .NET) provides a direct way to get that. The only way I know of is to enumerate all the top level windows with | |||||||||||||
feedback
|
|
I think you're looking for Process.MainWindowHandle Edit: If you're not using .Net/C++, then this is what you're looking for. | |||||||||
feedback
|
|
There's the possibility of a mis-understanding here. The WinForms framework in .Net automatically designates the first window created (e.g., | |||
|
feedback
|
|
Though it may be unrelated to your question, take a look at GetGUIThreadInfo Function. | |||
|
feedback
|
|
Just to make sure you are not confusing the tid (thread id) and the pid (process id):
| |||
|
feedback
|