I have a field (data type string) containing dates in format “dd/mm/yyyy”.
I used a simple NotesDateTime property to achieve that:
Set dt=New NotesDateTime(Cstr(entries))
Call rtitem.AppendText(Format(Cstr(dt.LSLocalTime),“d”))
Problem occurs when the same application is accessed by a client in UK. For example - if the date is 4/11/2009, for UK client, the date is picked up as 4 but for US client, the date is picked up as 11.
How do I expect the client to get a date (in string) in US format only?