kann man diese Prüfung auch irgendwie nur auf ein bestimmtes Feld beziehen???
Mit den mir bekannten Mittlen nicht.
Du kannst höchstens mal versuchen die Rückgabe von rtitem.EmbeddedObjects auf Empty zu prüfen.
...
If ( rtitem.Type = RICHTEXT ) Then
If Not IsEmpty(rtitem.EmbeddedObjects) Then Forall o In rtitem.EmbeddedObjects
If ( o.Type = EMBED_ATTACHMENT ) Then
Messagebox(Cstr(o.Name))
Call o.ExtractFile( "c:\test\" & o.Name )
End If
End Forall
End IfEnd If
...
Ob das allerdings so funktioniert kann ich dir nicht sagen. Ich hab's nicht probiert.
Axel