2006年6月20日

取得系统当前日期和时间

摘要: CTime time=CTime::GetCurrentTime(); // 获取系统时间 CString s = time.Format("%Y年 %m月 %d日 %H:%M:%S"); MessageBox(s); //显示当前的日期和时间 阅读全文

posted @ 2006-06-20 15:55 路吾 阅读(317) 评论(0) 推荐(0) 编辑

从文件中读取数据

摘要: CFile fileEditText; //Declare and open a file for readingCString strsend; if(fileEditText.Open("c:\\1.txt",CFile::modeRead)){ char cBuf[512]; //Declare a large buffer for reading the text UINT uBytest... 阅读全文

posted @ 2006-06-20 15:47 路吾 阅读(278) 评论(0) 推荐(0) 编辑

导航