- 积分
- 6006
- 明经币
- 个
- 注册时间
- 2003-8-20
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
发表于 2004-4-16 15:45:00
|
显示全部楼层
1。取ACAD的CDATE系统变量,代码为:
struct resbuf rb; acedGetVar("CDATE", &rb); double tt = rb.resval.rreal; CString cs; cs.Format("%f", tt); cs中为年月日.时分秒
2.直接用VC的GetLocalTime()函数,代码为:
CString csYear, csMonth, csDay, csHour, csMinute; SYSTEMTIME LocalTime; // system time GetLocalTime(&LocalTime);
//提取年月日时分 csYear.Format("%d", LocalTime.wYear); csMonth.Format("%d", LocalTime.wMonth); csDay.Format("%d", LocalTime.wDay); csHour.Format("%d", LocalTime.wHour); csMinute.Format("%d", LocalTime.wMinute); 供参考。 |
|