How do you format time and date in flexgrid cells?
Printable View
How do you format time and date in flexgrid cells?
Like this. Assuming that the you want to format first column on the first row:
Code:With MsFlexGrid
.TextMatrix(0, 0) = Format(.TextMatrix(0, 0), "dd/mm/yy hh:mm AM")
End with
------------------
Serge
Senior Programmer Analyst
[email protected]
[email protected]
ICQ#: 51055819
Thanks Serge, that's great.
Is there a property I could use to format the entire column without having to use loops?