.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Ok, I have code that works just fine in AutoCad 2010 (just plain ol' AutoCad), but will not run completely in AutoCad Mechanical 2012. The code will draw lines, arcs, circle, plines, etc. as well as insert blocks. The command to insert the block has the entire block path so I don't have to rely on setting that up for everyone.
In AutoCad Mechanical only the blocks show up. No lines, arcs or anything else is drawn. I do not use a command method (like in LiSP) to create those objects, I create them through the block table and block table records.
What do I have to do to get my code to run in AutoCad Mechanical 2012?
Thanks,
Mark
Re: Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi there,
Are you saying that even the most basic commands like the one below that adds a line has no effect in your AutoCAD Mechanical 2012? :-s
Did you debug into the code?
Did you check if the added entities were inside the database? - e.g. using ArxDbg (part of the ObjectARX SDK samples)
<code>
[CommandMethod("drawline")]
static public void drawline()
{
Database db = HostApplicationServices.WorkingDatabase;
using (Transaction tr = db.TransactionManager.StartTransaction())
{
BlockTable bt = (BlockTable)tr.GetObject(db.BlockTableId, OpenMode.ForRead);
BlockTableRecord ms = (BlockTableRecord)tr.GetObject(bt[BlockTableRecord.ModelSpace], OpenMode.ForWrite);
Line ln = new Line(new Point3d(10, 10, 0), new Point3d(20, 20, 0));
ms.AppendEntity(ln);
tr.AddNewlyCreatedDBObject(ln, true);
tr.Commit();
}
}
</code>
Cheers,
Adam Nagy
Developer Techincal Services

Adam Nagy
Developer Technical Services
Autodesk Developer Network
Re: Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Is it a display issue, i.e. can you select the entities (^A).
What does the STATUS command tell you ?
Layer filters ?
Tried to AUDIT and or RECOVER ?
Re: Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello Adam,
The code I use is similar to that. Also, the program hangs every time it's run. My AutoCad session just says "Not responding" after inserting the blocks. It wont let me check on anything alse because of this lock up.
Mark
Re: Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Try set CommandFlags.Session and
wrap code into :
Using LockDocument
'insert block here
End Using
C6309D9E0751D165D0934D0621DFF27919
Re: Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I'm not sure what you mean. I don't think I ever used "Using LockDocument" or "CommandFlags.Session". Can you explain it more?
Thanks
Re: Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Good idea of Hallex but if that would be the problem how is that different for Vanilla AutoCAD ?
[CommandMethod("MyCommand", CommandFlags.Session)]
public static void MyCommand()
{
using (DocumentLock dl =Application.DocumentManager.MdiActiveDocument.Loc
{
//do your thing
}
}
Re: Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I tried using the lockducument and commandflags.session as suggested, but it still did not work.
Best regards,
Mark
Re: Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
You answered the message from Adam with
>> The code I use is similar to that. Also, the program hangs every time it's run
That was not what he asked for (imho). You should really try to create a new solution, use his code in this solution and let him know it that has the same problem.
To just say "I did it in the same way" is not the option to isolate your problem because his code works for others and if it does not work on your pc then you know that something is wrong with your installation or with your solution/prroject settings. If it works you have two sultions where you can start to compare. That's where to start.
- alfred -
Alfred NESWADBA
Ingenieur Studio HOLLAUS ... www.hollaus.at
-------------------------------------------------------------------------
