I am using Access97.
In my Access form, i am trying to write code to open an intranet website and go to a specific record in the website.
(The intranet website requires a password.)
I got this to work:
Dim stAppName As String
stAppName = “C:\Program Files\Internet Explorer\IEXPLORE.EXE & Me.id_no
Call Shell(stAppName, 1)
The intranet website opens and asks for the password. After the user enters the password, the website opens to the proper record.
Great.
But, if the user goes back to a different record in the Access database and tries to go to the intranet website again, Explorer launchs a new instance and again requests the users' password.
Is there a way to not have Internet Explorer launch a new instance everytime the code is run?
Thanks,
Ruth
In my Access form, i am trying to write code to open an intranet website and go to a specific record in the website.
(The intranet website requires a password.)
I got this to work:
Dim stAppName As String
stAppName = “C:\Program Files\Internet Explorer\IEXPLORE.EXE & Me.id_no
Call Shell(stAppName, 1)
The intranet website opens and asks for the password. After the user enters the password, the website opens to the proper record.
Great.
But, if the user goes back to a different record in the Access database and tries to go to the intranet website again, Explorer launchs a new instance and again requests the users' password.
Is there a way to not have Internet Explorer launch a new instance everytime the code is run?
Thanks,
Ruth