Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
IManSession.SearchDocumentsWithNotification & IManCancel
cjrodwell
I am using WorkSite V8.2.
I have been attempting to write a full text search based around the following code from the "COM Object WorkSite Developer's Reference Manual" page 80
IManCancel objCancel;
IManSession objSession;
//DBList is a valid ManStrings collection
//ProfileSearchParams is a valid IManProfileSearchParameters collection
IManDocuments objDocs = (IManDocuments)
objSession.SearchDocumentsWithNotification(dblist,profileSearchParams,
true, objCancel);
bool status = objCancel.GetCancelStatus();
However this code always throws an error stating "[NRTSession ][SearchDocuments ]Too many search results; refine criteria." and objCancel remains null.
Am I doing something wrong and if so how can I get the code to work as documented?
Thanks,
Chris
Find more posts tagged with
Comments
cjrodwell
Does anybody have any ideas on this?