Handle a child form from another application...

G

Gurur

I want to access the properties of a child form of an application from
another application.
Properties means I want to perform some action on the visibility of
the child form.

I have the class name of the main form and its child form.
I have the handle of both the parent and child form(using FindWindow).

Plz help me out.
 
C

Chris Dunaway

I want to access the properties of a child form of an application from
another application.
Properties means I want to perform some action on the visibility of
the child form.

I have the class name of the main form and its child form.
I have the handle of both the parent and child form(using FindWindow).

Plz help me out.

Well, if you have the handle of the child form, you should be able to
send messages to it using the SendMessage API function.

Check out pinvoke.net for the appropriate signature.

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top