|
|
CFileDialog 로 단일 파일 열기
등록자 : cpueblo (유광희), 2008-08-28
글수정 | 글삭제
void CNDLoader_Serial_ModuleDlg::OnOpenbinfile()
{
// TODO: Add your control notification handler code here
POSITION FilesPoint;
CString FileName;
CFileDialog Files( TRUE, "*.bin", NULL, OFN_ENABLESIZING, "Binary Files (*.bin)|*.bin|All Files (*.*)|*.*|");
if (Files.DoModal() == IDCANCEL) return;
FileName = Files.GetPathName();
}
글수정 | 글삭제
http://codesarang.com. mail to cpueblo cpueblo.com
|
|