I am using Access 2007 and using this code to link a command button to a website.
Private Sub QRC_Click()
strUrl = "https://some.website.com/*********/some?process=QRC"
Call Shell("explorer.exe " & strUrl, vbMaximizedFocus)
End Sub
It works on every website except one. I think it has something to do with the "=" in the URL because when i click on the button it says "QRC cannot be found." I would like to know if there is another way to link to this website with a command button.
Note: I can't use the real URL because my they did not want me to.
Private Sub QRC_Click()
strUrl = "https://some.website.com/*********/some?process=QRC"
Call Shell("explorer.exe " & strUrl, vbMaximizedFocus)
End Sub
It works on every website except one. I think it has something to do with the "=" in the URL because when i click on the button it says "QRC cannot be found." I would like to know if there is another way to link to this website with a command button.
Note: I can't use the real URL because my they did not want me to.