-2

我有一个包含 2 个字段“名称”和“日期”的表

我有一个文件夹,其中包含一些文件名中包含名称和日期的文件,如下所示:Andrew Dost_12Sep2013 04-59-58 PM_4.docx

我的表单应该能够遍历这些文件并获取与表单的名称和日期字段匹配的文件并将它们附加到电子邮件中。

任何大师可以帮助我吗?

谢谢

4

1 回答 1

0

你应该看看“Dir Function Example”


set rst=openrecordset("TaleWith2fields")

while not rst.eof ' cycle through rows

  MyPath = rst![name] & "_" & rst![date] & "*.docx"
  MyName = Dir(MyPath)    ' Retrieve the first entry of matched files

  Do While MyName <> ""    ' Start the loop of matched files
      ' DO what you want with file named MyName
      '          

      MyName = Dir ' next matched file
  Loop             ' next matched file

  rst.movenext ' next row in table   
wend               ' next row in table 

于 2013-09-16T10:26:44.127 回答