[BCB] 單獨取出日月年

想要快速的拿到日月年的資料
 
目前最常用的是底下這三行
 
unsigned short Year,Month,Day;
TDate date = Now();
DecodeDate(date,Year, Month, Day);
 
另外也可以拿出
時分秒毫秒的資料
 
unsigned short Hour,Min,Sec,Msec;
TDate date = Now();
DecodeTime(date,Hour, Min, Sec, Msec);

留言