设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

12345下一页
返回列表 发新帖
查看: 10467|回复: 42
打印 上一主题 下一主题

[宏/菜单/工具栏] 支持多选的文件对话框

[复制链接]
跳转到指定楼层
#
发表于 2007-12-13 22:17:30 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
需引用 Microsoft Office 10.0 Object Library 或更高版本
  1. Dim fDialog As Office.FileDialog
  2. Dim varFile As Variant

  3. 'Clear listbox contents.
  4. Me.FileList.RowSource = ""

  5. 'Set up the File Dialog.
  6. Set fDialog = Application.FileDialog(msoFileDialogFilePicker)
  7. With fDialog
  8. 'Allow user to make multiple selections in dialog box
  9. .AllowMultiSelect = True

  10. 'Set the title of the dialog box.
  11. .Title = "lease select one or more files"

  12. 'Clear out the current filters, and add our own.
  13. .Filters.Clear
  14. .Filters.Add "Access Databases", "*.MDB"
  15. .Filters.Add "Access Projects", "*.ADP"
  16. .Filters.Add "All Files", "*.*"

  17. 'Show the dialog box. If the .Show method returns True, the
  18. 'user picked at least one file. If the .Show method returns
  19. 'False, the user clicked Cancel.
  20. If .Show = True Then
  21. 'Loop through each file selected and add it to our list box.
  22. For Each varFile In .SelectedItems
  23. Me.FileList.AddItem varFile
  24. Next
  25. Else
  26. MsgBox "You clicked Cancel in the file dialog box."
  27. End If
  28. End With
复制代码

游客,如果您要查看本帖隐藏内容请回复

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅

点击这里给我发消息

42#
发表于 2018-10-12 09:48:38 | 只看该作者
学习一下
回复

使用道具 举报

41#
发表于 2018-8-2 23:31:36 | 只看该作者
谢谢分享
回复

使用道具 举报

40#
发表于 2018-5-20 21:35:06 | 只看该作者
学习了,谢谢分享。
39#
发表于 2018-5-20 12:09:33 | 只看该作者
实用
回复

使用道具 举报

38#
发表于 2018-5-19 03:41:27 | 只看该作者
哦哦哦哦哦哦哦哦哦哦
37#
发表于 2018-5-19 02:35:14 | 只看该作者
学习学习!!!
回复

使用道具 举报

点击这里给我发消息

36#
发表于 2016-6-6 15:35:55 | 只看该作者
学习一下
回复

使用道具 举报

35#
发表于 2012-3-5 08:57:46 | 只看该作者
谢谢分享
34#
发表于 2012-3-5 08:52:46 | 只看该作者
有道理,好东西支持一下
33#
发表于 2012-3-2 14:27:50 | 只看该作者
看看
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2025-1-10 05:51 , Processed in 0.103700 second(s), 37 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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