Date format problem

Hi,

here is a strange problem.

On my two server (Linux and Windows2000),

the date format is mm/dd/yyyy and i check everywhere.

When i open a document, all the date fields are ok.

And when i make a @text(dateField; “D0S0”) to show date field in a view, all my date fields is displayed in the format dd/mm/yyyy. What happened ?

thx for help

Reagrds

Subject: RE: Date format problem

People have asked about this here before – please search.

It’s better not to use @Text in a view. Just display the date – if you want to hide a time, use @Date or the column display properties. That way, it’s the user’s preferences, not the servers, that determine how the date is formatted.

Subject: RE: Date format problem

thx for responding.i have search in this forum before i post.

and i saw no solution for this specific problem

for people who want display date field in a view which is displayed on web with html format.

the column contains some code like : “” + @text(DateField) + “” + @txt(NumberField)+…"

The solution i found is :

make simple columns in my view, each one with his specific format, like number, text and date in my case. Next, i do 3 DBLookup in a form, and i do the html formating myself like :

“” + DateFieldLookup + “” + NumberFieldLookup + …

and it work greats because i know i havent so much data to lookup.

so that’s it