Good day,How does one get a hold of a current Notes Session from VB.NET? Without having the user run the .net application and AGAIN enter their password?
Current .net code:
Try
myNotesSession = New Domino.NotesSession
myNotesSession.Initialize()
Try
myNotesDb = myNotesSession.GetDatabase("Server", "Database")
myNotesView = myNotesDb.GetView("By Date")
Catch ex As Exception
MessageBox.Show("Error trying to open database. Will try alternate server.")
End Try
etc.