- 206 名前:デフォルトの名無しさん mailto:sage [2009/01/18(日) 16:01:41 ]
- 日付や時間を取得したいけどエラーがでてしまうんです・・・
内容は Run-Time Check Failure #3 - The variable 'newtime' is being used without being initialized. afx_msg void CMainWin::OnTime() { char str[80]; CTime Curtime = CTime::GetCurrentTime(); struct tm *newtime; newtime = Curtime.GetLocalTm(newtime); //ここが問題 wsprintf(str,asctime(newtime)); str[strlen(str) - 1] = '\0'; MessageBox(str,"Time and Date"); } msdn.microsoft.com/ja-jp/library/fxy17zta(VS.80).aspx ここ見る限りじゃ間違いないと思うんだけどなあ・・・ 指摘と改善お願いします。。。
|

|