Ejemplo n.º 1
0
	void	OnFileSave( void ){
//		CFileSaveDlg	dlg;
		CFileOpenDlg	dlg;
		if( dlg.DoModal(m_hWnd) ){
			TString	str;
			dlg.GetFileName(str);

			SaveDumpText(str);
		}
	}
Ejemplo n.º 2
0
	void	OnFileOpen( void ){
		CFileOpenDlg	dlg;
		if( dlg.DoModal(m_hWnd) ){
			TString	str;
			dlg.GetFileName(str);

			SetWindowText(str);

			///*CThread* pThread = */new CThread( new CDumpFileThread(str, m_wndList), true );
			//if( pThread ){
			//	pThread->Start();
			//}
		}
	}