G
Guest
I have this code for a button that excutes based on the data in the box next
to it, what should I change to do this? This data is www.domainname.com I
want this button to be able to pull this up
http://whois.sc/www.domainname.com. So when you click on the button, it will
take this string "http://whois.sc/" and insert whatever value I have in the
data box, like www.domainname.com and excute that line like"
http://whois.sc/www.domainname.com in a browser.
On Error GoTo handler
Strwww = "http://" & [www]
Application.FollowHyperlink Address:=Strwww
handler:
If Err.Number = 4 Then
End If
If Err.Number = 5 Then
End If
Thanks
Curtis
to it, what should I change to do this? This data is www.domainname.com I
want this button to be able to pull this up
http://whois.sc/www.domainname.com. So when you click on the button, it will
take this string "http://whois.sc/" and insert whatever value I have in the
data box, like www.domainname.com and excute that line like"
http://whois.sc/www.domainname.com in a browser.
On Error GoTo handler
Strwww = "http://" & [www]
Application.FollowHyperlink Address:=Strwww
handler:
If Err.Number = 4 Then
End If
If Err.Number = 5 Then
End If
Thanks
Curtis