Hi Please help me, I have a form1 with combo box on it selecting it value from a table. I want to have another form2 with a label to display the selected value from the combobox of form1.
thanks
Hi Please help me, I have a form1 with combo box on it selecting it value from a table. I want to have another form2 with a label to display the selected value from the combobox of form1.
thanks
This is air code, but in an appropriate event on Form2
Me.Form2LabelName.Caption = Forms("Form1")("ComboboxName")
or, in the Caption Property for Form2LabelName
= Forms("Form1")("ComboboxName")
Note that Form1 has to be open for this to work, and I'm not sure what will happen if nothing is selected in the Combobox.
Linq ;0)>