I have a label that i am trying to have go to a different URL depending on what a combo box value is. I have the following working:
What i cannot figure out is how to do the following....if the value is anything other than "pc" or "ht" then nothing happens when it is clicked.
Any suggestions?
Paul
Code:
If Text101.Value = "PC" Then
Label39.HyperlinkAddress = "[URL unfurl="true"]http://www.google.com"[/URL]
End If
If Text101.Value = "HT" Then
Label39.HyperlinkAddress = "[URL unfurl="true"]http://www.cnn.com"[/URL]
End If
What i cannot figure out is how to do the following....if the value is anything other than "pc" or "ht" then nothing happens when it is clicked.
Any suggestions?
Paul