Clear DateTime Field

Hi!!!

Can someone help me?

I need to clear the content of a field DateTime with Lotus Script. Can someone say me how?

Thanks in advice.

João Barbosa

Subject: Clear DateTime Field

’ doc is the NotesDocument containing the datatime valuedoc.removeItem() ’ nuke field

doc.replaceItemValue(, “”) ’ erase data

doc.=“” ’ Shorthand for replaceItemValue

This is all clearly spelled out in the Help database that comes with Designer. Hope this helps…