hyperlink button on a userform

  • Thread starter Thread starter Roger on Excel
  • Start date Start date
R

Roger on Excel

[excel 2003]
I have a userform which has a column of textboxes displaying hyperlink
addresses pulled from a vlookup table. The text boxes have the names :

txtHyperlink1
txtHyperlink2
txtHyperlink3

I have Command buttons next to these boxes to which I would like to add code
such that they call up the web for the listed hyperlink shown in the text
boxes.

Can anyone help?
 
Hi Roger,

try

ActiveWorkbook.FollowHyperlink txtHyperlink1.value

Regards,

Rainer
 
Back
Top