码迷,mamicode.com
首页 > 其他好文 > 详细

多选择文件打开对话框

时间:2014-05-17 22:27:46      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   c   tar   ext   

 

多选择文件打开对话框

 

关键点

可以打开多个文件

 

实现过程

 

CString filter = "文本文档(*.txt)|*.txt|所有文件(*.*)|*.*||";
CFileDialog OpenFileDialog(TRUENULL"*.txt"OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT|OFN_ALLOWMULTISELECTfilter);
//     OpenFileDialog.m_ofn.lpstrInitialDir = "D:\\";
//  OpenFileDialog.m_ofn.lpstrTitle="Open File";
CString Msg;
if(OpenFileDialog.DoModal() == IDOK)   
{
    POSITION pos;
    pos=OpenFileDialog.GetStartPosition();//开始遍历用户选择文件列表
    while (pos!=NULL)
    {
        CString filename=OpenFileDialog.GetNextPathName(pos);
        Msg+=filename+"\r\n";
   }
    MessageBox(Msg);
}    

 

 

 

bubuko.com,布布扣   


 

备注

 

 

相关链接

                           

 

 




多选择文件打开对话框,布布扣,bubuko.com

多选择文件打开对话框

标签:style   blog   class   c   tar   ext   

原文地址:http://www.cnblogs.com/xe2011/p/3734535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!