L Lynn63 Registered User. Local time Today, 05:54 Joined Oct 8, 2001 Messages 14 May 28, 2003 #1 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!
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!
IMO Now Known as ___ Local time Today, 05:54 Joined Sep 11, 2002 Messages 723 May 30, 2003 #2 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
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