string arananVeri =TextBox1.Text +" "+TextBox2.Text +" "+TextBox3.Text +" "+ TextBox4.Text +" "+ TextBox5.Text +" "+
TextBox6.Text +" "+ TextBox7.Text +" "+ TextBox8.Text +" "+ TextBox9.Text +" "+ TextBox10.Text;
string tumVeriler = textBox11.Text;
//aradığımız verinin textbox11'de hangi indeksten itibaren yer aldığını tespit ediyoruz.
int indeksArananVeri = tumVeriler.IndexOf(arananVeri);
//Textbox11'de bu indeksden başlayıp aranan verinin uzunluğu kadar metin seçili hale getiriliyor.
textBox11.Select(indeksArananVeri, arananVeri.Length);
//textBox11'de kod ile yapılan seçim gizlenmesin gösterilsin
textBox11.HideSelection = false;