3
Answers

How to compare two values of two strings

vinni jain

vinni jain

15y
4k
1

Hi,
How can I compare two strings so that I get the best match.
I have made form1 with two panels.In the upper panel there is a textbox in which user can enter any string and now I want to compare this string with the text property of other forms (form2,form3  etc....). 
If string matches completely with the text property of any particular form then it should display that form on lower panel  in form1 . and if it does not matches , then it should display error in messagebox.
 
How can I do this........
Answers (3)
0
Danatas Gervi

Danatas Gervi

NA 1.4k 0 15y
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
vinni jain

vinni jain

NA 111 0 15y

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
Roei Bar

Roei Bar

NA 7.8k 0 15y
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