Details
| I am getting Object variable not set error, please help me in resolveing it,
Sub Initialize
Dim ws As New NotesUIWorkspace
Dim uiview As NotesUIView
Dim view As NotesView
' use the workspace to get the current view
Set uiview = ws.CurrentView
Set view = uiview.View 'ERROR here
Dim filenames As Variant
Call ViewExcelPrint (view)
End Sub
|