I have some lotusscript which exports a view. However, I need to know whether any given column is in date format.
NotesViewColumn.DateFmt returns 0 if it’s in the year month day format (which is always used in my firm).
NotesViewColumn.TimeDateFmt returns 0 if it’s in the date only format (which is widely used in my firm)
The problem is, both of these properties return 0 if the column isn’t a date column at all.
Does anyone know a good way of telling if a column is set for Date/Time? I am currently having to rely on the column title containing the word “Date” which isn’t very reliable.
Thanks