formatting date time

  • Thread starter Thread starter mark
  • Start date Start date
M

mark

i can format dates without a problem like - {0:dd/MM/yyyy}
how can i add just the hour and minutes as well ? eg 26/08/2004 11:39 (24hr)

thanks

mark
 
i can format dates without a problem like - {0:dd/MM/yyyy}
how can i add just the hour and minutes as well ? eg 26/08/2004 11:39
(24hr)

hh or HH = hours
mm = minutes
 
Hi,

Use {0:dd/MM/yyyy HH:mm}

i can format dates without a problem like - {0:dd/MM/yyyy}
how can i add just the hour and minutes as well ? eg 26/08/2004 11:39 (24hr)

thanks

mark
 
Shiva said:
Hi,

Use {0:dd/MM/yyyy HH:mm}

i can format dates without a problem like - {0:dd/MM/yyyy}
how can i add just the hour and minutes as well ? eg 26/08/2004 11:39 (24hr)

thanks

mark
thanks - working good now

mark
 
Back
Top