LS to transfer date from form to form problem

I’m using LS to transfer the value of a date field from one form to another. In the orig doc and doc2, the field is set to type time/date date only.

In LS, I use:

.

Dim Builddate As NotesDateTime

.

.

doc2.BuildDate = doc.BuildDate

.

.

When I look at doc and doc2, they show the date only; When both docs appear in the same view,

doc show the date, (In this case, 12/30/2007), but

doc2 shows 12/30/2007 12:00:00AM

How do I get rid of the time portion in the view?

Subject: LS to transfer date from form to form problem

Uncheck the “Display time” checkbox in the column properties after setting the column style to Date/Time

Subject: LS to transfer date from form to form problem

In the view column, you can use @Date(fieldname).

Subject: RE: LS to transfer date from form to form problem

Yes, that did it…

Barkin’ up the wrong tree.

Thanks…