Hi,
habe ein komische Problem mit einem Client.
Ich verwende mehrere SetTargetFrame nacheinander. So kann ich den Inhalt von einzelnen Frames gut steuern. Dies funktioniert auch auf ca. 15 bereitsgetesteten Rechnern sehr gut. Jetzt habe ich aber einen Notes Client (8.5) der jeden einzelnen Frame den ich z.B. mit Call ws.SetTargetFrame("displayFrame") aufrufe, in einem neuen Tab öffnet.
Rechte usw. hab ich schon ausprobiert, auf anderen aktuellen Clients läuft's auch, nur dieser Verhält sich so komisch.
Hat jemand nen Tip für mich?
Viele Grüße,
Michael
| Sub Onselect(Source As Notesuiview) |
| Dim ws As New NotesUIWorkspace |
| Dim session As New NotesSession |
| Dim curdb As NotesDatabase |
| Dim doc As NotesDocument |
| Dim launchdoc As NotesDocument |
| Dim view As NotesView |
| Dim compositeid As String |
| Dim companyid As String |
| |
| Dim dbname As String |
| Dim orgdbame As String |
| Dim ytpdbname As String |
| |
| ... |
| |
| Call ws.SetTargetFrame("displayFrame") |
| Set doc = view.GetDocumentByKey(compositeid) |
| Call ws.EditDocument(False,doc,False,,False) |
| |
| Call ws.SetTargetFrame("targetFrame") |
| Call ws.OpenFrameSet("twoHorizontal") |
| |
| Call ws.SetTargetFrame("Frame1") |
| Call ws.ComposeDocument(curdb.Server,curdb.FilePath,"contacts_view",,,False) |
| End Sub |