I'm currently using this code to access a Lotus Notes database from within Microsoft Access:
At execution of first line, Notes is launched and the password is requested: can I avoid this? I'd like my program to operate in background. Can I programmatically send my password to Lotus, rather than having it locking my app due to missing password? Infact, my program goes on to second line, which raises an error if I don't insert the pass! Adding a delay would not solve the problem, as I want the program to be not user-dependant.
-- Jumpjack --
Code:
Set session = CreateObject("Notes.Notessession")
Set db = session.GETDATABASE(SERVER, DBNAME)
If db.ISOPEN = False Then
MsgBox ("Impossibile aprire db '" & DBNAME & "'")
End If
At execution of first line, Notes is launched and the password is requested: can I avoid this? I'd like my program to operate in background. Can I programmatically send my password to Lotus, rather than having it locking my app due to missing password? Infact, my program goes on to second line, which raises an error if I don't insert the pass! Adding a delay would not solve the problem, as I want the program to be not user-dependant.
-- Jumpjack --