.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
issue with "has a command inprogress ."
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
I am facing issue while saving file as
"xxxx" has a command inprogress.
Hit enter to cancel or [Retry]: *Cancel*
This issue comming, only when i am updating title block details in
Initialize() method,while opening drawing
Please help me on this.
Regards,
Raman
Re: issue with "has a command inprogress ."
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
you might have forgotten to .Dispose a DocumentLock in any of your functions/subs/....
- alfred -
Alfred NESWADBA
Ingenieur Studio HOLLAUS ... www.hollaus.at
-------------------------------------------------------------------------
Re: issue with "has a command inprogress ."
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thanks for your reply on this.
Please let me know how i can .Dispose a DocumentLock
Regards,
Raman
Re: issue with "has a command inprogress ."
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
have you not locked the document by your code? If not, then forget this option;
...otherwise like every disposable object the syntax is:
myObject.Dispose
I'm not sure now (assuming you have not used a DocumentLock) if the same message might be thrown when you forgot a transaction to dispose? At least it's worth to look into it.
If the code is small enough (the part that gives us the chance to recreate your issue) then upload it here.
- alfred -
Alfred NESWADBA
Ingenieur Studio HOLLAUS ... www.hollaus.at
-------------------------------------------------------------------------
