Access to Lotus Notes

Lynn63

Registered User.
Local time
Today, 05:54
Joined
Oct 8, 2001
Messages
14
I currently use a module that will open MS outlook from Access. Is there a way to open Lotus Notes from Access and send a Lotus Notes e-mail message? Thanks!
 
You could try

Private Sub YourButton_Click()
Call Shell("C:\PathOfLotusNotes\LotusNotes.exe C:\PathOfFileToOpen", vbNormalFocus)
End Sub

to open a file in Lotus Notes, and look up "SendObject" in Access help to send email.

IMO
 

Users who are viewing this thread

Back
Top Bottom