0
Closed - what does it mean?
Created (by new operator) and not showed yet?
If your forms are existing in main form collection (MDIChildren for example) - create a handler for event TextChanged for your textbox:
private void textBox1_TextChanged(object sender, EventArgs e)
{
foreach
(Form chForm
in MdiChildren)
{
if
(chForm.Text == textBox1.Text)
{
chForm.Activate();
}
}
0
All my forms are closed initially........
I am entering the string in textbox and if it exactly matches with the text of any of the forms then that form should open in the lower panel.
0
do you want to compare with all open forms,
specific TextBox Items on forms?
i need some more data in order to provide the right code