Yes, I just want to judge whether the subitem exists or not, but
it will be paid with much more performance.
Now we get back to the original problem, seeing the following code:
Dim myNoteFolder As MAPIFolder
Dim myNote As NoteItem
Set myNoteFolder = Application.Session.GetDefaultFolder(olFolderNotes)
Set myNote = myNoteFolder.Items.Add(olNoteItem)
myNote.Body = "test1" & vbCrLf & "Line1"
myNote.Save
Debug.Print Len(myNote.EntryID); myNote.EntryID
I have tried it in more than 3 computers with this code, and got the same
result, the length of the EntryID were still 48 bytes!
Have you ever gotten an EntryID that it's more than 48 bytes?
Thanks again!
Hanny