newInstance=false parameter not working in EditDocument

In Postsave event of a document, I try to get back to the parentdocument by using:

Set uidoc = ws.EditDocument(True,parentdoc,False)

Prior to Notes 8.5, the last parameter opened the document in the same tab when it’s already open, but since we upgraded to 8.5 the “False” parameter doesn’t seem te work anymore - a new session is opened, so we end up with 2 times the same document. Is this a bug? Any workarounds? Thanks!

Subject: Have same issue with new instance parameter

Also using 8.5.1.

Set doc = db.GetDocumentByUNID(Source.Document.ParentDocumentUNID)

	Set uiDoc = workspace.EditDocument(True, doc, False, "", False, False)

It opens the document in a second tab even though it’s already open. Anyone have any success using this parameter?

Subject: TargetFrame

Try this!

Call workspace.SetTargetFrame(“”)

Set uiDoc = workspace.EditDocument(True, doc, False, “”, False, False)

newInstance parameter (the last parameter) does not apply if notesDocument is not specified or the document has a target frame.

Subject: Any solution?

Or may be someone got a work around!!