legalkill
Technical User
- Nov 27, 2001
- 11
I made a button that simply opens internet explorer and a url that is a compilation of address fields and text that would make the Mapquest url. (
the button click event is:
Dim stAppName As String
stAppName = "c:\program files\internet explorer\iexplore.exe " + [Mapquest]
Call Shell(stAppName, 1)
where mapquest is the field on the form that compiles the url. It works on a variety of machines but does not work on others. The ones that it does not work on errors with "invalid use of . dot" on the machines that it does not work i can take the mapquest field out and it will open IE just fine.
What could be the issue and/or a better way of doing this.
the button click event is:
Dim stAppName As String
stAppName = "c:\program files\internet explorer\iexplore.exe " + [Mapquest]
Call Shell(stAppName, 1)
where mapquest is the field on the form that compiles the url. It works on a variety of machines but does not work on others. The ones that it does not work on errors with "invalid use of . dot" on the machines that it does not work i can take the mapquest field out and it will open IE just fine.
What could be the issue and/or a better way of doing this.