반응형
==========================================
void msgChar( char *m){
CString cm;
// cm.Format(_T("%s"),m);
cm = (LPCSTR)(LPSTR)m;
AfxMessageBox(cm);
}
void msgNum( int m){
CString cm;
cm.Format(_T("%d"),m);
AfxMessageBox(cm);
}
==========================================
void test_mBox(){
msgChar("HaHaHa");
msgNum(-16);
}
==========================================
반응형
'개발 > mfc' 카테고리의 다른 글
MFC vs2010 : Ontimer와 SetTimer, KillTimer (0) | 2023.09.06 |
---|---|
mfc , 자식 Dialog 만들기 - vs2010, sample source (0) | 2023.09.03 |
mfc thread 만들기 - vs 2010, sample source (0) | 2023.09.03 |
mfc vs2010 ini 파일 읽기 쓰기 간단 보기, sample source (0) | 2023.08.21 |
mfc log 파일 만들기 저장하기 - vs2010, sample source (0) | 2023.08.18 |