본문 바로가기

프로그래밍(C/S)/MFC

SYSTEM의 시간을 설정하기

void CXxxx::SET_NOWTIME(CString sDate)
{
 SYSTEMTIME st;
 memset( &st, NULL, sizeof(st) );

 st.wYear = atoi(sDate.Mid(0, 4));
 st.wMonth = atoi(sDate.Mid(4, 2));
 st.wDay = atoi(sDate.Mid(6, 2));
 st.wHour = atoi(sDate.Mid(8, 2));
 st.wMinute = atoi(sDate.Mid(10, 2));
 st.wSecond = atoi(sDate.Mid(12, 2));
 st.wMilliseconds = 0;

 SetLocalTime( &st );
}