This is a discussion on Open Web Page within the Microsoft Access forums, part of the Databases category; My Code Builds this variable...URL I want to actually open a web page with it Dont know how....any thoughts? Code: ...
| |||||||
#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 & "" |
|
#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: Mistakes: It could be that the purpose of your life is only to serve as a warning to others. 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 |
| Thread Tools | |
| Display Modes | |
| |
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 | |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| go page to page questionaire app | peebman2000 | .Net Development | 3 | April 26th, 2008 04:42 PM |