Time only in a datetime field

Hi

I have a form in which I have a date/time field. By Lotusscript i want to put date only in this field. How I can do this ?

Subject: Time only in a datetime field

This is a bit hard to find, both in these forums and in Designer Help. Look under the NotesDateTime class, SetAnyTime method.

Subject: Time only in a datetime field

After creating the NotesDateTime object, just call the “SetAnyTime” method on it. For example:

Dim ndtNow as NotesDateTime

set ndtNow = new NotesDateTime()

call ndtNow.SetNow()

call ndtNow.SetAnyTime()

hth,

dgg