![]() |
| |||||||
| Sponsored Links |
![]() | « Previous Thread | Next Thread » |
| | LinkBack (1) | Thread Tools | Display Modes |
#1
| |||
| |||
| My Code Builds this variable...URL I want to actually open a web page with it Dont know how....any thoughts? Code: varURL = "http://gis.co.hennepin.mn.us/HCPropertyMap/Birdseye.aspx?PID=" & varURLValue & "" |
| Sponsored Links |
|
#2
| |||
| |||
| 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 = ""
|
| The Following User Says Thank You to Jaykappy For This Useful Post: | ||
sbenj69 (May 27th, 2008) | ||
|
#3
| ||||
| ||||
| cool .. .thanks for posting the solution ...
__________________ Quote of the Month: Regret: It hurts to admit when you make mistakes - but when they're big enough, the pain only lasts a second. Questions to Ponder: Could it be that all those trick-or-treaters wearing sheets aren’t going as ghosts but as mattresses? iif([sarcasm]=true,iif([you have to ask]=true,"didn't work","ha ha ha"),"not sarcasm") copyright © 2008 sbenj69 |
![]() |
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| go page to page questionaire app | peebman2000 | .Net Development | 3 | April 26th, 2008 04:42 PM |
LinkBacks (?)
LinkBack to this Thread: http://www.developerbarn.com/microsoft-access/185-open-web-page.html | ||||
| Posted By | For | Type | Date | |
| webForum - script i access | This thread | Refback | July 8th, 2008 01:44 PM | |