T
Thra?n
1) When using the advanced search method, I'm able to search for
contacts in a public folder and get results:
Dim appOutlook as New Outlook.Application
Dim ObjSearch as Outlook.Search
Dim blnSearchCompleted as Boolean
blnSearchCompleted = False (Is toggled in the
Outlook_AdvancedSearchCompleted event)
Set ObjSearch = appOutlook.AdvancedSearch("'\\Public Folders\All
Public Folders\België'")
While blnSearchCompleted = False
DoEvents
Wend
The next line gives the problem:
ObjSearch.Save("Test")
I can't save the results and get an error: operation failed
2) If that would work, I want to use the OVC. Now, if I use results
from my local address book (not public folder), it always give
standard fields: from, to , date, etc. How can I change the fields
that the OVC should show?
Thanks in advance for helping me!
contacts in a public folder and get results:
Dim appOutlook as New Outlook.Application
Dim ObjSearch as Outlook.Search
Dim blnSearchCompleted as Boolean
blnSearchCompleted = False (Is toggled in the
Outlook_AdvancedSearchCompleted event)
Set ObjSearch = appOutlook.AdvancedSearch("'\\Public Folders\All
Public Folders\België'")
While blnSearchCompleted = False
DoEvents
Wend
The next line gives the problem:
ObjSearch.Save("Test")
I can't save the results and get an error: operation failed
2) If that would work, I want to use the OVC. Now, if I use results
from my local address book (not public folder), it always give
standard fields: from, to , date, etc. How can I change the fields
that the OVC should show?
Thanks in advance for helping me!