Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012

Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012

mgorecki
Collaborator Collaborator
1,315 Views
8 Replies
Message 1 of 9

Code Works in Vanilla AutoCad 2010, But Not in AutoCad Mechanical 2012

mgorecki
Collaborator
Collaborator

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

0 Likes
1,316 Views
8 Replies
Replies (8)
Message 2 of 9

adam.nagy
Autodesk Support
Autodesk Support

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
Autodesk Platform Services
0 Likes
Message 3 of 9

SENL1362
Advisor
Advisor

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 ?

 

0 Likes
Message 4 of 9

mgorecki
Collaborator
Collaborator

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

0 Likes
Message 5 of 9

Hallex
Advisor
Advisor

Try set CommandFlags.Session and

wrap code into :

Using LockDocument

'insert block here

End Using

_____________________________________
C6309D9E0751D165D0934D0621DFF27919
0 Likes
Message 6 of 9

mgorecki
Collaborator
Collaborator

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

0 Likes
Message 7 of 9

SENL1362
Advisor
Advisor

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.LockDocument())
    {

           //do your thing
    }

}

 

0 Likes
Message 8 of 9

mgorecki
Collaborator
Collaborator

I tried using the lockducument and commandflags.session as suggested, but it still did not work.

 

Best regards,

Mark

0 Likes
Message 9 of 9

Alfred.NESWADBA
Consultant
Consultant

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
ISH-Solutions GmbH / Ingenieur Studio HOLLAUS
www.ish-solutions.at ... blog.ish-solutions.at ... LinkedIn ... CDay 2026
------------------------------------------------------------------------------------

(not an Autodesk consultant)
0 Likes