Submitted by Robert F Harwood on Jan 13, 2012 4:20:32 PM

Re: Working with Date/Time Values in Lotus Notes

checked

Submitted by sundaram SM on Jan 20, 2011 10:54:36 PM

Re: Working with Date/Time Values in Lotus Notes

Hi

User wants to view date in their own time zone irrespective of the datezone of the value in the document. How to implement this?

Thanks in Advance.

Sundar

Submitted by Mitch Courtright on Jul 28, 2009 12:09:24 PM

Business Days

Handy though being new to Notes formula language, what is meant by _base and _guess?

Submitted by Karsten HW Lehmann on May 4, 2009 4:51:58 AM

Thanks, next question :-)

DateNumber and TimeNumber return datatype 7 variants. What is a safe way to convert them to NotesDateTime?

NotesDateTime really should have some setter methods for the date parts (setMonth / setYear etc.) like Calendar has in Java.

Submitted by Andrew M Brew on May 3, 2009 8:03:43 PM

DateNumber

DateNumber(yyyy, mm, dd) gives you what you want. A date string like "mm/dd/yyyy" is ambiguous, so avoid such constructs for all the reasons Andre gives above.

Submitted by Karsten HW Lehmann on May 3, 2009 12:34:27 PM

Equivalant to @Date(YYYY;MM;DD) in Lotusscript

I would like to know if there a "good" equivalant to @Date(YYY;MM;DD) in Lotusscript, as there is code in formula language and Java. Is the string argument of the constructor

New NotesDateTime("...")

language dependent or can I rely on a date format like "MM/DD/YYYY" being recognized in all locales in that constructor?

Submitted by Karsten HW Lehmann on May 3, 2009 12:31:35 PM

Equivalent to