About Programing/03. Tip
[MFC] 다른이름으로 저장하기 창 생성
숙신
2010. 4. 22. 23:59
void CUserClass::Save(void) { static char BASED_CODE szFilter[] = "한글 Files (*.hwp)|*.hwp||"; CFileDialog dlg (FALSE, "*.hwp", "*.hwp", OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, szFilter); if (dlg.DoModal () == IDOK) { } }