hello everyone!
i have 2 forms. One of them is Customers the other one is Sales. In Customers i have a listview which lists all customers. In Sales i have a comboBox and a button.
I have to add all customers to comboBox when i push the button.
in Sales form :
CustomerForm cf =
{
Customers c =
c.Name = lvi.Text;
c.SurName = lvi.SubItems[1].Text;
comboBox1.Items.Add(c);
}