Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用代码从默认文件夹中获取注释:
Set myNote = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderNotes)
如何从不同的文件夹中获取笔记?
您必须遍历文件夹层次结构,例如,如果您的其他 Notes 文件夹位于收件箱下方一级,则代码为
Set myNote = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox).Folders("My New Notes Folder Name")