Handle a child form from another application...

  • Thread starter Thread starter Gurur
  • Start date Start date
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.
 
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
 
Back
Top