Get controls

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

Guest

Hello,

I know how to get a handle to a window using FindWindow() but how do I get
all the controls on the window itself?

Please help, thank you.
-p
 
Hi!
Use FindWindowEx or GetNextWindow. See the MSDN for both functions.
Hope that helps.
Best regards, Adrian.
 
Paul said:
I know how to get a handle to a window using FindWindow() but how do I get
all the controls on the window itself?

P/invoke 'EnumChildWindows'.
 
Back
Top