Danke, aber ich bräuchte den Befehl in Lotus Script.und warum sagst Du das nicht gleich?
2. This form action imports a BMP file into the Body field of the current UI document.
Sub Click(Source As Button)
Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Call uidoc.GotoField("Body")
Call uidoc.Import("BMP Image", "c:\Windows\Red Blocks.bmp")
End Sub