设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 2933|回复: 1
打印 上一主题 下一主题

如何打开文件名选择框?

[复制链接]
跳转到指定楼层
1#
发表于 2006-12-13 00:40:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
在ACCESS中打开文件名选择框用下面代码就可以了,但在VB应该如何写呢?
    Dim FileName As String
    Dim Result As Integer
    With Application.FileDialog(msoFileDialogFilePicker)
        .Title = "文件名称"
        .Filters.Add "文件", "*.TXT"
        .AllowMultiSelect = False
        .InitialFileName = App.Path & "\ABC"   
        Result = .Show
      End With
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2007-9-10 23:53:44 | 只看该作者
先在窗体上放CommonDialog控件.
Private Sub cmdOpen_Click()
On Error GoTo Result
    Dim strNeedFileName as string
    CommonDialog1.CancelError = True
    CommonDialog1.ShowOpen
    strNeedFileName = CommonDialog1.FileName

Result:
    Select Case Err.Number
        Case Is = 32755
            Exit Sub
        Case Is = 20
            Resume Next
        Case Is = 0
            Resume Next
        Case Else
            MsgBox Err.Number & Err.Description
            Exit Sub
    End Select
End Sub
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-5-16 02:19 , Processed in 0.154059 second(s), 25 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表