rangersedge
Registered User.
- Local time
- Today, 14:22
- Joined
- Jun 13, 2014
- Messages
- 82
I'm trying to learn how to automate my Access database to get information from a web site. Any suggestions on how to learn this or where to learn this?
Private Sub Command510_Click()
Dim z As Variant
Dim strURL1 As String
Dim strURL2 As String
Dim strURL As String
Dim MyResult As String
Dim Path As String
Dim ID As String
readHTML = ""
readText = ""
strURL1 = "http://www.giantbomb.com/api/game/"
strURL2 = "3030-4725/?api_key=fd273aa2a677d4931b8efda98573eebad7589ec8"
strURL = (strURL1 + strURL2)
Path = "C:\Program Files (x86)\Internet Explorer\iexplore.exe"
z = Shell(Path + " " + strURL, vbNormal)
Debug.Print readHTML
Debug.Print readText
End Sub
z = Shell(Path + " " + strURL, vbNormal)
Shell Path + " " + strURL, vbNormal