리스트박스를 화면 표출 로그로 사용할시 사용
리스트박스 컨트롤 설정 sort : false 로 설정
CString strLog;
OutputListbox(m_listOutput, strLog);
void CExampleDlg::OutputListbox(CListBox& box, CString str) { SYSTEMTIME cur_time; GetLocalTime(&cur_time); CString strTime; strTime.Format(_T("[%02d:%02d:%02d.%03d] "), cur_time.wHour, cur_time.wMinute, cur_time.wSecond, cur_time.wMilliseconds ); UpdateData(TRUE); box.AddString(_T(" > ") + strTime + str); box.SetCurSel(box.GetCount() - 1); // Log 최신으로 커서이동 UpdateData(FALSE); } |
'공부 > MFC_자주쓸거' 카테고리의 다른 글
[MFC]레지스트리에 데이터 저장 (0) | 2021.08.09 |
---|---|
[MFC] 작업표시줄 숨기기 (0) | 2021.07.07 |
[MFC] 중복실행 방지 (0) | 2021.05.27 |
[MFC] 다이얼로그 엔터키 막기 _키보드메세지_PreTranslateMessage (0) | 2021.05.26 |
[MFC] 실행파일 경로 (0) | 2021.05.18 |