Results 1 to 3 of 3
  1. #1
    Poohbear0471 is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2012
    Posts
    78

    Lotus Notes send email error

    I have a button in my database to create an email with information from the current record. We use Lotus Notes 9 for our email client. I have one team member out of 14 that receives an error when attempting to use this code. The error is generated from Lotus Notes and states "The server has thrown an error." No additional information is provided. The code for the email button is attached. Since this works correctly for all other team members, I'm assuming there is no error in my code. Any possibility any of you guys are familiar with Lotus and could offer a suggestion?


    Click image for larger version. 

Name:	Email code.PNG 
Views:	6 
Size:	21.7 KB 
ID:	37182

  2. #2
    ranman256's Avatar
    ranman256 is online now VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,524
    because you are using macro to run , you cannot really debug.
    try CONVERT MACRO TO VBA, to convert this to code,
    put in an error trap, and it will locate the error point.

    Code:
    Private Sub btnGO_Click()
    On Error GoTo Err_click
       'your code is here
    
    Exit_Click:
        Exit Sub
    Err_click_Click:
        MsgBox Err.Description
        Resume Exit_Click
        resume
    End Sub

  3. #3
    Gicu's Avatar
    Gicu is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    Jul 2015
    Location
    Kelowna, BC, Canada
    Posts
    4,114
    Can you get that user to check that Lotus Notes is set as the default mail client?

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 4
    Last Post: 04-24-2014, 01:54 PM
  2. Replies: 10
    Last Post: 04-24-2014, 01:43 PM
  3. Replies: 3
    Last Post: 01-31-2014, 04:34 PM
  4. Replies: 19
    Last Post: 10-26-2012, 11:33 AM
  5. Replies: 3
    Last Post: 03-08-2012, 04:43 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums