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)
Invalid clipboard format when requesting folder contents
marianmarkov
Hi,
The code snipped below raises 8004006A (Invalid clipboard format) when running at particular WorkSite NT 8.2 site. It works fine at many other places, so I wonder if anyone has an idea what could be the reason for this?
IManDocumentSearchFolder folder;
IManContents contents;
...
contents = folder.Contents;
count = contents.Count; // raises 8004006A
iManage.dll is version 8.2.20.0.
Thanks,
marian
Find more posts tagged with
Comments
dopey
0x8004006A is actually "operation timed out." Some operating environments seem to misinterpret the errors that come back from imanage.dll, at least I think that's what is happening, as the messages always seem to be correctly set in the imanage.dll.
dopey
What language are you using for this, by the way?
marianmarkov
hi,
Thank you for the reply. I actually figured it out little while after the posting. I was using FormatMessage with flags FORMAT_MESSAGE_FROM_HMODULE | FORMAT_MESSAGE_FROM_SYSTEM. It gave the right error message when passing only the lower word of the error code. The code was written in Delphi.
cheers,
marian