EditDocument crashes Notes in a frame

Here is the setup, I have my application in the Notes Client only, THIS IS NOT A WEB APPLICATION, that uses a frameset containing a single frame and everything happens in that frame basically to stay within one tab.

Now I need to open a 4 frame frameset within that frame and populate that frameset. All is done in script because of data processing. I open the new frameset (4 frame frameset) into the previous frameset (1 frame frameset) and then fill each of the frames of the new frameset. And when I try to open a document in one, the EditDocument crashes the Notes Client.

I have seen other post but no responses, and I have seen a tech note, but it apparently was resolved in 6.5.5 and 7.0.1 and I am using 7.0.3… Anyone can give me a hand with this? Here is my code:

’ Open the frame set and fill the frames

Call ws.SetTargetFrame("Main")

Call ws.OpenFrameSet("fs_Formulaire")



Call ws.SetTargetFrame("Form_Top")

Set docTemp = New NotesDocument(dbCourante)

docTemp.Form = "nav_FormTopNav"

' opening the document crashes Notes

' Set uidocTemp = ws.EditDocument(True, docTemp, True, "", False, False)



Call ws.SetTargetFrame("Form_Right")

Set docTemp = New NotesDocument(dbCourante)

docTemp.Form = "nav_FormSideNav"

' Set uidocTemp = ws.EditDocument(False, docTemp, True, "", False, False)



Call ws.SetTargetFrame("Form_Main1")

' Set uidocTemp = ws.EditDocument(False, docPresentation, True, "", False, False)



Call ws.SetTargetFrame("Form_Main2")

' Set uidocTemp = ws.EditDocument(False, docForm, True, "", False, False)

Subject: RE: EditDocument crashes Notes in a frame

For crashes, please contact Lotus Support and supply the NSD file.

Subject: RE: EditDocument crashes Notes in a frame

well after opening an incident with Lotus, this is apparently a bug that will be fixed in a later version.

Subject: RE: EditDocument crashes Notes in a frame

Meanwhile, as a workaround, could you use a frameset with formulas in the frames to compute the Notes URLs of their contents based on – let’s say – environment variables that your code sets before opening the frameset?