MFC CFileDialog 在 Windows 2000 中无法正常工作
我使用Visual Studio 2008(Windows 7)进行开发,并使用
CFileDialog(TRUE, NULL, lastPath, NULL, szFilter);
重要的参数是第三个(lastPath)来进入特定目录! 在 Windows 7 中一切正常,但在 Windows 2000 中,只有当 LastPath (LPCTSTR lpszFileName) 为空时对话框才有效(否则对话框不会打开)
有什么想法吗?
感谢和问候 莱昂22
I develop with Visual Studio 2008 (Windows 7) and use
CFileDialog(TRUE, NULL, lastPath, NULL, szFilter);
The important parameter is the third (lastPath) to get in a specific directory!
All works fine with Windows 7 but in Windows 2000 the Dialog only works if lastPath (LPCTSTR lpszFileName) is empty (otherwise the Dialog doesn't open)
Any ideas!?
Thanks and greets
leon22
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,我发现了错误:
不要用 lpszFileName 设置初始目录!
正确用法:
问候 leon22
Ok, I have found the error:
don't set the initial directory with lpszFileName!
Right usage:
greets leon22
经我调试,CFolderPickerDialog在win7/win10下可以正常查找,但只能像CFileDialog一样选择文件。
上面显示了我的解决方法,我让用户选择一个以 szFilter 结尾的文件,并使用 CString::Left 来获取正确的文件夹。
As I debugged, CFolderPickerDialog can work find in win7/win10, but can only select file just like CFileDialog.
Above shows my workaround, I make user select a file ends with szFilter , and using CString::Left to get the correct folder.