Finding controls on a form in another application

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello All,

In .NET, how can I find out the controls on a form for an application that is running on my computer? The app is either a vb or c application.

Thanks,
Vince
 
* "=?Utf-8?B?VmluY2UgVmFyYWxsbw==?= said:
In .NET, how can I find out the controls on a form for an application that is running on my computer? The app is either a vb or c application.

P/invoke on 'FindWindow', 'FindWindowEx', 'EnumWindows',
'EnumChildWindows'.
 
Back
Top