Open Lotus Notes from Excel VBA
In this blog we'll see how to open Lotus Notes from Excel VBA.
Steps:
1. Open a new file
2. Press Alt+F11 to open VBA editor
3. In the left navigation window select ThisWorkbook
4. In the editor window enter the code below
5. Close the VBA editor
6. Save the file as Macro Enabled File
7. Test with you inputs
Code:
Sub OpenLotusNotes()
Dim LN As Object
Set LN = CreateObject("Notes.Notessession")
LN.Visible = True
End Sub
I think this has been informative and I thank you for viewing.
-Saurabh
»
- saurabhlakhanpal's blog
- Login or register to post comments
- 10420 reads
Recent comments
5 years 41 weeks ago
6 years 27 weeks ago
6 years 39 weeks ago
6 years 42 weeks ago
6 years 43 weeks ago
6 years 48 weeks ago
7 years 4 weeks ago
7 years 5 weeks ago
7 years 5 weeks ago
7 years 5 weeks ago