CFile和CFileDialog的结合...[1]

[入库:2006年2月23日] [更新:2007年3月24日]

本文简介:

下面是一个函数可以使用CFileDialog取得文件路径,然后用CFile打开的.

(其中,m_szEditText是已经绑定到一个CEdit里面的CString)

 CString m_szTmp;
 char buf[1000];
 CFileDialog dlg(TRUE,"mdl","*.mdl");
 if(dlg.DoModal()==IDOK) {
            CFile mfile;
             mfile.Open(dlg.GetPathName(), CFile::modeRead);
             mfile.Read(buf,sizeof(buf));
             m_szTmp = buf;
             m_szEditText = m_szTmp;
             mfile.Close();
 }
 UpdateData(FALSE);

---------------------------------------------

CFileDialog Class Members

Data Members

m_ofnThe Windows OPENFILENAME structure. Provides access to basic file dialog box parameters.

Construction

CFileDialogConstructs a CFileDialog object.

Operations

DoModalDisplays the dialog box and allows the user to make a selection.
GetPathNameReturns the full path of the selected file.
GetFileNameReturns the filename of the selected file.
GetFileExtReturns the file extension of the selected file.
GetFileTitleReturns the title of the selected file.
GetNextPathNameReturns the full path of the next selected file.
GetReadOnlyPrefReturns the read-only status of the selected file.
GetStartPositionReturns the position of the first element of the filename list.

Overridables

OnShareViolationCalled when a share violation occurs.
OnFileNameOKCalled to validate the filename entered in the dialog box.
OnLBSelChangedNotifyCalled when the list box selection changes.
OnInitDoneCalled to handle the WM_NOTIFY CDN_INITDONE message.
OnFileNameChangeCalled to handle the WM_NOTIFY CDN_SELCHANGE message.
OnFolderChangeCalled to handle the WM_NOTIFY CDN_FOLDERCHANGE message.
OnTypeChangeCalled to handle the WM_NOTIFY CDN_TYPECHANGE message.

本文关键:CFile和CFileDialog的结合...
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top