当前位置:  开发笔记 > 后端 > 正文

Vb6:选择一个文件以便以后通过浏览按钮使用

如何解决《Vb6:选择一个文件以便以后通过浏览按钮使用》经验,为你挑选了1个好方法。

这是我的代码(注意这是由朋友给出的):

Private Sub Browse_Click()
   Dim textfile As String
   textfile = Space(255)
   GetFileNameFromBrowseW Me.hWnd, StrPtr(sSave), 255, StrPtr("c:\"), 
      StrPtr("txt"), StrPtr("Apps (*.txt)" + Chr$(0) + "*.txt" + Chr$(0) +
      "All files (*.*)" + Chr$(0) + "*.*" + Chr$(0)), StrPtr("Select File")
      Text1 = Left$(textfile, lstrlen(textfile))
End Sub

基本上后来我编辑了所选的文本文件,所以稍后我只是在我的函数中使用textfile来调用它.但是我得到了一条未找到的路径,所以我觉得我做错了什么.提前致谢.

编辑:我想要做的就是选择一个文本文件,然后再调用它并使用它.



1> Ant..:

正如shahkalpesh所提到的,您只需使用标准COM库即可访问此功能.

在VB6中,添加组件:

项目>组件

在"控件"选项卡上,选择"Microsoft通用对话框控件6.0"(SP6)

现在在表单上,​​从工具箱中添加新的Common Dialog控件

在代码中,您需要:

CommonDialog.Filter = "Apps (*.txt)|*.txt|All files (*.*)|*.*"
CommonDialog.DefaultExt = "txt"
CommonDialog.DialogTitle = "Select File"
CommonDialog.ShowOpen

'The FileName property gives you the variable you need to use
MsgBox CommonDialog.FileName

推荐阅读
echo7111436
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有