[RESOLVED] Change Combo Box Text through Another Combo Box
For some reason this doesn't seem to be working. Any ideas?
VB Code:
Private Sub cboImageType_Change()
Select Case cboImageType.Text
Case "Regular":
cboImageProp.Text = lblsRegular.Caption
Case "Hyperlink":
cboImageProp.Text = lblsHyperlink.Caption
Case "Rollover":
cboImageProp.Text = lblsRegular.Caption
End Sub
Re: Change Combo Box Text through Another Combo Box
OnChange being if the value selected is changed.....also, obviously you have looked at this, but you use a Select Case, all values checked for do exist correct?
Re: Change Combo Box Text through Another Combo Box
No.. It's not checking to see if those values exist (I think that's what you're saying). It's checking to see if they were the ones selected out of the choices.
1 Attachment(s)
Re: Change Combo Box Text through Another Combo Box
Re: Change Combo Box Text through Another Combo Box
Got it.
Private Sub cboImageType_Change()
had to be
Private Sub cboImageType_Click()