gpt4 book ai didi

vba - 文本文档 Outlook 2007

转载 作者:行者123 更新时间:2023-12-03 06:09:21 26 4
gpt4 key购买 nike

我想知道是否有任何方法可以在 Outlook 2007 中使用 VBA 从文本文件中读取信息。

感谢关注

最佳答案

  Private Sub Command1_Click()
'Declare variables.
Dim fso As New FileSystemObject
Dim ts As TextStream
'Open file.
Set ts = fso.OpenTextFile(Environ("windir") & "\system.ini")
'Loop while not at the end of the file.
Do While Not ts.AtEndOfStream
Debug.Print ts.ReadLine
Loop
'Close the file.
ts.Close
End Sub

来自MSDN FSO Object

Open sPath, #FileNo舒服得多。您需要使用“工具 -> 引用”将 FSO 添加到您的项目中,如 MSDN 中所述。

关于vba - 文本文档 Outlook 2007,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6937244/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com