Dominic Posted August 13, 2009 Posted August 13, 2009 Hi I am trying to add one digital signature. I am trying this from my window application. I used the following code object[] itemArray = new object[1]; itemArray[0] = "SECURITYOPTIONS" + " & vbCr"; object item = moActiveDoc.GetType().InvokeMember("SendCommand", BindingFlags.InvokeMethod, null, moActiveDoc, itemArray); It is working fine.. But i tried to save the document, i got the error message as Call was rejected by callee. (Exception from HRESULT: 0x80010001 (RPC_E_CALL_REJECTED)) How can i solve this issue. I couldn't find any method or property from object browser related to this command 'SECURITYOPTIONS'. [i am using Autocad 2007] I got struck. Please help me to solve this error. Quote
Lee Mac Posted August 13, 2009 Posted August 13, 2009 This will probably get a better response in the Customisation forum. Is the above VB.NET? If you don't get a good response here, try at theSwamp.org. Lee Quote
Dominic Posted August 14, 2009 Author Posted August 14, 2009 Hi I solved the issue. I used 'vbCRLF' instead of 'vbcr' and my issue got solved. Regards Dominic Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.