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 / cutee

/* C# Version */

for (int i=0; i<= ComboBox1.Items.Count)
{
for(int j=0 ; j<= ComboBox2.Items.count)
{
if (ComboBox1.Items[i].Text == ComboBox2.Items
[j].Text)
MessageBox.Show(Items[i].Text);
}
}

Is This Answer Correct ?    3 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the advantages of form?

904


What is form application?

914


Suppose 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?

931


Which of the following position is the default docking position of the statusstrip control on the form?

938


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

868


What is the use of runworkasync() methods?

979


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

961


What is difference between winforms and windows forms?

1022


Name the template that is used to create a user-defined component.

872


Which window displays messages for the status of various features provided in the visual studio .net ide?

1010


What is form description?

960


What is an example of form?

945


Explain how insert record in the database?

971


Which method of the messagebox class is used to display a message in the message box?

943


Name the two main categories of .net components.

902