@modified Format

hi everyone i found problem about @modified function

i’m developing application for lotusnotes on the web .

now i have 2 servers ,

server 1 is a actual server for develop my application and

server 2 is in VMWare for test my application

when i used @modified function on actual server it shown value 08/07/2009 13:03:08 and i used this function on VMWare it shown 07/08/2009 12:49:43 PM . the difference between server 1 and server 2 is format for this function on server 1 is dd/mm/yyyy but on server 2 is mm/dd/yyyy and i want server 2 to show value of this function like server 1. what should i do to change format this function on server 2 ?

thanks in advance

Subject: @Modified / Date Format

There is nothing wrong with the @Modified function as such. It returns a date/time so you could use something like:

ModDate := @Modified;

@Text(@Day(ModDate)) + “/” + @Text(@Month(ModDate)) + “/” + @Text(@Year(ModDate))

to get it into a consistent format.

Domino usually gets its date format from the operating system internationalisation settings although I think that can be overridden. If you make both OS use the same date format then that should fix your app.

Subject: thank you very much , Robin Wills

thank you very much , Robin Wills