Is there anyway to carry one combo box from one form to another without the use of loops? I'm trying to figure out if it would be easier to represent a comb box in a new form, or if it would be easier to show it in a print preview window....

Recommended Answers

All 2 Replies

um you mean like getting the value of the combo box from one form to another? If thats what you need then try:

'From form 2
combobox2.items = form1.combobox1.items ' Try items or text, im not so sure

See this,

Me.ComboBox1.Items.AddRange(Form2.ComboBox1.Items.Cast(Of Object)().ToArray())
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.