Search results

  1. E

    Variable Scope.

    Anybody any idea what the difference between a Global variable and a Public variable is? As I understand it: Dim - available only within the current procedure Private - available to all procedures in the current module Public - available to all procedures in all modules Global - available to...
  2. E

    Handling Lotus Notes Via VBA

    I have the following code which sends an email from a Lotus Notes email account: Public Sub SendMail(strAddressee As String, strSubject As String, strBody As String) Dim objNotesWS As Object Dim notesdb As Object Set objNotesWS = CreateObject("Notes.NotesUIWorkspace") Set notesdb =...
Back
Top Bottom