欢迎访问:常州市武进区嘉泽中心小学网站 !今天是:
栏目列表
您现在的位置是:首页>>教师>>计算机技术>>程序设计>>杂项>>文章内容
CFile和CFileDialog的结合...
发布时间:2008-11-20   点击:   来源:本站原创   录入者:佚名
 

下面是一个函数可以使用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.


附件:
    关闭窗口
    打印文档
    账号登录
    保持登录 忘记密码?
    账号与武进教师培训平台同步