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 / somnath
int countFirstBox=comboBox1.Items.Count;
int countSecondBox=comboBox2.Items.Count;
if(countFirstBox==countSecondBox)
{
MessageBox.Show(comboBox1.Items);
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how print PGL by XML
Explain the new events in textbox that has been included in vb?
How save rerecord in the database?
Explain the difference between listindex and tab index?
Which method grants a lock on a resource?
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?
To which namespace does the control class belong?
What are window based applications?
What are windows based applications examples?
What is the difference between pixels, points, and em’s when fonts are displayed?
How to get records from a database?
What is the use of form?
What is form description?
i already displaying one datagrid. now i want to make change to particular column header i.e i want to split that column header and it includes one more header.... write a code for that in windows application using C#.net
What is an example of form?