I have a userform that asks the following-
Equipment Type: [ComboBox]
Qty: [TextBox]
I have the code that opens the form and all of the initial controls - it is rather long but this is basically what it looks like:
Private Sub UserForm_Initialize()
With ComboBox_BoilerType
.AddItem "Hydronic"
End With
ComboBox_BoilerType.ListIndex = 0
End Sub
I would like to take this information and have hidden controls become visible:
"Label-1" "TextBox-1"
"Label-2" "TextBox-2"
etc. up to number entered in QTY
I have no idea how to do this... any help would be greatly appreciated
Equipment Type: [ComboBox]
Qty: [TextBox]
I have the code that opens the form and all of the initial controls - it is rather long but this is basically what it looks like:
Private Sub UserForm_Initialize()
With ComboBox_BoilerType
.AddItem "Hydronic"
End With
ComboBox_BoilerType.ListIndex = 0
End Sub
I would like to take this information and have hidden controls become visible:
"Label-1" "TextBox-1"
"Label-2" "TextBox-2"
etc. up to number entered in QTY
I have no idea how to do this... any help would be greatly appreciated