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.
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.