ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 1361|回复: 5

[求助] with块变量未设置怎么解决

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-8-9 10:42 | 显示全部楼层 |阅读模式
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
显示到‘        Cells(lRow, iCol + 1) = .getdetailsof(.Items, vArray(iCol))’
就是with块变量未设置

  1. Sub AAA()
  2. Dim iPath As String, b As Long                                                                '定义变量 iPath 为 String,i 为 长整型值
  3. Dim t                                                                                          '定义变量 t
  4. t = Timer                                                                                      't=当前计时
  5. With Application.FileDialog(msoFileDialogFolderPicker)                                         '工作于Application.FileDialog(msoFileDialogFolderPicker)
  6. .Title = "请选择要查找的文件夹"                                                                          '.Title="请选择要查找的文件夹"
  7. If .Show Then                                                                                  '如果 .Show 则执行
  8.     iPath = .SelectedItems(1)                                                                   'iPath=.SelectedItems(1)
  9. End If                                                                                         'End如果
  10. End With                                                                                       'End工作于
  11. If iPath = "False" Or Len(iPath) = 1 Then Exit Sub                                             '如果 iPath="False"或者Len(iPath)=1 则执行 退出子程序
  12.     b = 1                                                                                       'i=1
  13.     Call GetFolderFile(iPath, b)                                                                '调用 GetFolderFile(iPath,i)

  14. End Sub                                                                                        'End子程序
  15. Public Sub GetFolderFile(ByVal nPath As String, ByRef iCount As Long)                        '私有的子程序 GetFolderFile(变量nPath 为 String,ByRefiCount 为 长整型值)


  16.   Dim oShell As Object
  17.   Dim oFile As Object
  18.   Dim oFldr As Object
  19.   Dim lRow As Long
  20.   Dim iCol As Integer
  21.   Dim vArray As Variant
  22.   vArray = Array(0, 10, 18, 176)
  23.   Set oShell = CreateObject("Shell.Application")
  24.   lRow = 1
  25.       Set oFldr = oShell.Namespace(iPath)
  26.       With oFldr
  27.         For iCol = LBound(vArray) To UBound(vArray)
  28.           Cells(lRow, iCol + 1) = .getdetailsof(.Items, vArray(iCol))
  29.         Next iCol
  30.         For Each oFile In .Items
  31.           lRow = lRow + 1
  32.           For iCol = LBound(vArray) To UBound(vArray)
  33.           On Error Resume Next
  34.             Cells(lRow, iCol + 1) = .getdetailsof(oFile, vArray(iCol))
  35.           Next iCol
  36.         Next oFile
  37.       End With


  38. For Each nFolder In sFolder                                                                    '设定变量范围为每一个nFolder位于sFolder
  39.     Call GetFolderFile(nFolder.Path, iCount)                                                    '调用 GetFolderFile(nFolder.Path,iCount)
  40. Next                                                                                           '下一个

  41.   End Sub                                                                                        'End子程序
  42.                                                                                              



复制代码


TA的精华主题

TA的得分主题

发表于 2018-8-9 11:10 | 显示全部楼层
楼主使用的参数ipath,npath需要甄别下吧
领带对象在使用的时候,如果是nothing肯定是要有问题的

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-9 13:46 | 显示全部楼层
liulang0808 发表于 2018-8-9 11:10
楼主使用的参数ipath,npath需要甄别下吧
领带对象在使用的时候,如果是nothing肯定是要有问题的

问题是显示是到 Cells(lRow, iCol + 1) = .getdetailsof(.Items, vArray(iCol))出错喔

TA的精华主题

TA的得分主题

发表于 2018-8-9 15:39 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
yukiru 发表于 2018-8-9 13:46
问题是显示是到 Cells(lRow, iCol + 1) = .getdetailsof(.Items, vArray(iCol))出错喔

那楼主把这段代码注释掉,看看还是不是继续报错

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-8-9 15:40 | 显示全部楼层
liulang0808 发表于 2018-8-9 15:39
那楼主把这段代码注释掉,看看还是不是继续报错

是报错才弄个注释看看的  T.T

TA的精华主题

TA的得分主题

发表于 2018-8-9 16:24 | 显示全部楼层
yukiru 发表于 2018-8-9 15:40
是报错才弄个注释看看的  T.T

意思是将报错的那行代码注释掉,不是说你增加的注释。
然后再运行代码看看是否报错的
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-11 21:08 , Processed in 0.019505 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

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