博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
将文件夹下的所有txt文件加载到本文档中
阅读量:5036 次
发布时间:2019-06-12

本文共 594 字,大约阅读时间需要 1 分钟。

Function InsertIntoDoc(strPath as string)

  Set fso=CreateObject("Scripting.FileSystem")

  Set objFolder=fso.GetFolder(strPath)

  Set objFiles=objFolder.Files

  For each objFile In objFiles

    Debug.Print objFile.Name

    Set fout=fso.OpenTextFile(strPath & "\" & objFile.Name,1,False)

    tmpOut=fout.ReadAll

    str1=str1 & objfile.Name & chr(13)

    str1=str1 & tmpout & chr(13) & chr(13) & chr(13)

  Next

  Selection.TypeText Text:=str1

End Sub

 

CommandButton1_Click()

  Call InsertIntoDoc("E:\......\DataBase")

End Sub

转载于:https://www.cnblogs.com/djcsch2001/archive/2012/09/11/2680851.html

你可能感兴趣的文章
每日定理3
查看>>
在公司就职时应该注意的事项
查看>>
springMVC整合jedis+redis
查看>>
Python基础之 一 文件操作
查看>>
java学习之switch 等值判断
查看>>
hdu5036 Explosion 传递闭包
查看>>
WinXP下由于图标造成的System.Windows.Markup.XamlParseException
查看>>
解决错误提示unable to invoke code completion due to errors in source cord.
查看>>
比较smart的一条分页存储过程
查看>>
POJ1979-Red and Black
查看>>
leetcode 数据库题解
查看>>
文件打开对话框
查看>>
install docker on centos7
查看>>
mysql 查询条件中文问题
查看>>
svn
查看>>
父组件操作子组件中的值,将父组件的值设置给子组件
查看>>
配置SQL Server 2005 以允许远程连接
查看>>
LSTM学习理解资料
查看>>
Callable与Runable接口 submit与execute区别
查看>>
Obsidium V1.3.0.4 脱壳
查看>>