作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用VB6
代码。
CommonDialog1.DialogTitle = "Open File"
CommonDialog1.Filter = "*.*"
CommonDialog1.FilterIndex = 1
CommonDialog1.Flags = cdlOFNAllowMultiselect + cdlOFNExplorer
CommonDialog1.Flags = cdlOFNFileMustExist + cdlOFNHideReadOnly
CommonDialog1.CancelError = True
On Error Resume Next
CommonDialog1.ShowOpen
If Err Then
'MsgBox "Select Folder"
Exit Sub
End If
从上面的代码中,我正在选择一个文件,但我不想选择一个文件,我只想选择文件夹。如何修改我的代码。
需要 vb6 代码帮助吗?
最佳答案
我已经有一段时间没有做任何视觉基本工作了,但我认为您应该使用 SHBrowseForFolder 函数,而不是使用通用对话框来获取要打开的文件的名称它已经是 Windows API 的一部分。这是 link到描述其用法的页面。
更新(2017):提供的链接已损坏,但 a backed-up version can be viewed on archive.org
关于vb6 - 如何仅使用通用对话框控件选择文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1584045/
我是一名优秀的程序员,十分优秀!