Hello,
I create a form ("ParentForm") as a father with a menustrip ----> "searchClient" , and from a searchClient I supposed to press "search" and from ther to get to the "clientCard" that perform as a child. How can I do thet?
Thenk you, mali
Hello,
I create a form ("ParentForm") as a father with a menustrip ----> "searchClient" , and from a searchClient I supposed to press "search" and from ther to get to the "clientCard" that perform as a child. How can I do thet?
Thenk you, mali
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ryan AlfordPosted Jul 27, 2008, 11:02 AM
----- Search Menu click event on Parent form----
ClientCard client_card = new ClientCard();
client_card.MdiParent = this;
client_card.Show();
maliPosted Jul 27, 2008, 4:15 AM
ClientCard client_card = new ClientCard();
this.Hide();
client_card.MdiParent();
client_card.Show();
I try agian, this is the code I wrote on "sherch form" to open a other form "client" as a child but its not working. ths "sherch form" is not a chid but we open this form from the toolbar on the "father form"
thenk you