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 );
}
'프로그래밍(C/S) > MFC' 카테고리의 다른 글
SYSTEM의 현재 시간값을 가져오기 (0) | 2011.03.10 |
---|---|
String Format을 이용한 가변 메세지 LOG 파일 남기기 (0) | 2011.03.10 |
String Format 형 (1) | 2011.03.10 |
Control 객체들을 XP Style로 변경하기 (0) | 2011.03.10 |
데이터 형식 선언 (0) | 2011.03.04 |