My Code Builds this variable...URL
I want to actually open a web page with it
Dont know how....any thoughts?
ThanksCode:varURL = "http://gis.co.hennepin.mn.us/HCPropertyMap/Birdseye.aspx?PID=" & varURLValue & ""
My Code Builds this variable...URL
I want to actually open a web page with it
Dont know how....any thoughts?
ThanksCode:varURL = "http://gis.co.hennepin.mn.us/HCPropertyMap/Birdseye.aspx?PID=" & varURLValue & ""
Got it...
Code:Dim varURLValue As String Dim varURL As String ' Set the variable from a textbox on the form varURLValue = "" varURLValue = PID ' Set equal to URL with PID variable varURL = "" varURL = "http://gis.co.hennepin.mn.us/HCPropertyMap/Birdseye.aspx?PID=" & varURLValue & "" MsgBox varURL Set browser = CreateObject("InternetExplorer.Application") browser.Navigate (varURL) browser.StatusBar = False browser.Toolbar = False browser.Visible = True browser.Resizable = False browser.AddressBar = False ' Clear variables varURLValue = "" varURL = ""
cool .. .thanks for posting the solution ...
Quote of the Month:
Leaders: Leaders are like eagles. We don't have either of them here.
Questions to Ponder:
Why do banks charge you a "non-sufficient funds fee" on money they already know you don't have?
iif([sarcasm]=true,iif([you have to ask]=true,"didn't work","ha ha ha"),"not sarcasm")
copyright © 2008 sbenj69
Sarchasm: The gulf between the author of sarcastic wit and the person who doesn't get it.
Bookmarks