Subject: RE: OpenMail does not work in appointment form of Notes mail template, is this R6 bug?
Hi Andre,Thanks a lot for your quick response,
Before I post my this question, I did some research from this forum, I did found other developers have the same problems, that is why I posted it again. You can find their posts by searching “Openmail”, For example: the following developers: Enrico Leder,
Actually it is really a problem after my test. You can see the problem following these steps:
1.Add these test codes to PostOpen event of Reply form
Dim db As New NotesDatabase( “”, “” )
Call db.OpenMail
If db.IsOpen Then
Messagebox( db.Title & " on server " & db.Server )
Else
Messagebox "Maildb is not opened yet"
End If
2.open you calendar
3.Open any existing meeting schedule
4.Click Action, then choose: Send Memo to All Invitees
5.The reply form will be lunched, at the same time, you will see the message which maildb is not opened, isopen returns false.
We want to add customzed codes in the postopen event of reply form, it related to mail db in server, if it is not open in server, then it only points to local replica.
Please let me know if you need any more information, Thanks,