Is there any way to by pass delete message of Lotus Notes or delete attachments in the body using formula language?

Hi,

I am deleting attachments present in the Body of Calendar using formula language. I am using following code to delete the Body contents.

@Command([EditGotoField];“Body”);

@Command( [EditSelectAll] );

@Command([Clear]);

@Command( [ToolsRefreshAllDocs] ) ;

But if attachments are present in the Body I am getting following message box of Lotus Notes:

“This operation cannot be undone. Do you wish to proceed? (Yes/No)”

Is there any way to by pass this message or delete attachments in the body using formula language?

Any help would be appreciated.

Thanks,

Abhi

Subject: Is there any way to by pass delete message of Lotus Notes or delete attachments in the body using formula language?

I had a similiar problem. The only solution that worked properly (without message box) was to switch to Lotus Script.

I use the following Lotus Script command:

Call notesUIDocument.FieldClear( [ fieldName$ ] )