000
20.11.2005, 07:50 Uhr
killcommander
|
C++: |
void CsleepertempDlg::OnBnClickedButton1() { //UpdateData(FALSE); CTime curTime2 = CTime::GetCurrentTime(); UpdateData(TRUE); m_istunde=curTime2.GetHour()+(m_iCount/60);//m_iCount: wert der eingabe in min. m_iminute=curTime2.GetMinute()+(m_iCount%60); CString test; test.Format("%d : %d",m_iCount,m_iminute); SetTimer(ID_CLOCK_TIMER, 1000, NULL); MessageBox(test); }
void CsleepertempDlg::OnTimer(UINT nIDEvent) { CTime curTime = CTime::GetCurrentTime();
m_zeit.Format("%d:%d:%d",curTime.GetHour(),curTime.GetMinute(),curTime.GetSecond());
int imin=m_iminute-curTime.GetMinute(); int ihour=m_istunde-curTime.GetHour(); m_sshutdown.Format("%d:%d",ihour,imin); UpdateData(FALSE); }
|
warum setzt es mir meine eingaben immer wieder auf 0 oder anderen schwachsinn
gruß -- Achtung NOOBIE ALARM |