MFish
Board Regular
- Joined
- May 9, 2019
- Messages
- 76
I have a combobox1 in UF1 that is coded as...
Once userform2 shows up, I need another combobox to select something.
Code I have...
Once selected I press submit, on a commandbutton1, and after pressing submit it will transfer that data, I just selected within userform2 in combobox, to textbox1 in userform1.
But when I try to use code...
It says it won't be able to perform because that userform is already opened.. How do I get the userform to show again and taking the value of that combobox in userform2 into a textbox in userform1?
Code:
sub combobox1_change()
[INDENT]
userform2.show
[/INDENT]
end sub
Once userform2 shows up, I need another combobox to select something.
Code I have...
Code:
Sub combobox1()
[INDENT]
Me.combobox1.List = Worksheets("Drop Down Data").Range("d3:d51").Value
[/INDENT]
end sub
Once selected I press submit, on a commandbutton1, and after pressing submit it will transfer that data, I just selected within userform2 in combobox, to textbox1 in userform1.
But when I try to use code...
Code:
sub commandbutton1_click()
[INDENT]userform1.show
[/INDENT]
end sub
It says it won't be able to perform because that userform is already opened.. How do I get the userform to show again and taking the value of that combobox in userform2 into a textbox in userform1?