Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

I have two combobox .. and i have some items in both combobox
now i need to check the item in both combobox if same item
is Present in both combobox i need to display that item in
message box

Answer Posted / pavel

bool found = false;
string item = string.Empty;
foreach (string item1 in comboBox1.Items)
{
foreach (string item2 in comboBox2.Items)
if (item1 == item2)
{
item = item1;
found = true;
break;
}
if (found) break;
}
MessageBox.Show(found ? item : "Not found");

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between listbox and combo box?

906


Explain how many number of events does the timer controls?

885


Which property of the errorprovider control automatically sets to the form to which?

916


Which event occurs when a user drags an item in a treeview or listview control?

916


Name the property which is used to lock a textbox to enter data?

1024


What is the extension of a compiled help project file?

1062


How insert record in the database?

951


What are the different cloud platforms?

923


What is an example of form?

943


Suppose I am implementing one windows form. I am inserting some values into ms access. In that table 5 columns there. But I want to insert three columns only. When I am clicking another button then other two values also insert into that table?

930


What is the extension of the windows installer file?

1006


Explain how to split a column header in gridview using c#.net?

959


Name the event that enables the user to prevent shifting of focus from control until all the validation rules have been met.

865


Explain how to find the current record position in data control?

863


How many navigational features are provided by visual studio.net ide?

990