I found the following code that as a macro, opens up a webpage based on the webpage name you put in.
Since I have in my contact form, a UserProperties field which I type in the webpage as a text word, not a link, can I change this code so the Browser.Navigate recognized the text words from the field called "Second Webpage"which could be objItem.UserProperties("Second WebPage")?
Here is the code if it can be changed please:
Private Sub WebPage()
Set Browser = CreateObject("InternetExplorer.Application")
Browser.Navigate ("
www.microsoft.com")
Browser.StatusBar = False
Browser.Toolbar = False
Browser.Visible = True
Browser.Resizable = False
Browser.AddressBar = False
End Sub