Ich habe in einer Maske ein eingebettetes OLE Objekt.
Mir will es nun nicht gelingen, wenn ich ein Dokument geöffnet habe, welches mit dieser Maske erstellt wurde, mit Script auf das OLE Objekt zuzugreifen.
Es ist offenbar so, dass Notes das Objekt nicht "kennt".
Mein Script:
Dim ws As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Dim doc As NotesDocument
Dim objectName As String
Dim handle As Variant
Set uidoc = ws.CurrentDocument
Set doc = uidoc.Document
objectName = ""
If doc.HasEmbedded Then
Forall o In doc.EmbeddedObjects
objectName = o.Name
Exit Forall
End Forall
End If
Die If Abfrage ist immer false.
Kennt jemand eine Möglichkeit?
Andreas