• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Mentor
    Posts: 370
    Registered: ‎09-23-2004

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

    234 Views, 8 Replies
    01-09-2012 12:19 PM

    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

    Please use plain text.
    ADN Support Specialist
    Posts: 207
    Registered: ‎03-26-2007

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

    01-10-2012 05:13 PM in reply to: mgorecki

    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
    Please use plain text.
    Valued Contributor
    SENL1362
    Posts: 58
    Registered: ‎07-20-2011

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

    01-11-2012 12:23 AM in reply to: mgorecki

    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 ?

     

    Please use plain text.
    Mentor
    Posts: 370
    Registered: ‎09-23-2004

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

    01-11-2012 07:02 AM in reply to: adam.nagy

    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

    Please use plain text.
    *Expert Elite*
    Hallex
    Posts: 1,332
    Registered: ‎10-08-2008

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

    01-11-2012 09:52 AM in reply to: mgorecki

    Try set CommandFlags.Session and

    wrap code into :

    Using LockDocument

    'insert block here

    End Using

    _____________________________________
    C6309D9E0751D165D0934D0621DFF27919
    Please use plain text.
    Mentor
    Posts: 370
    Registered: ‎09-23-2004

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

    01-11-2012 02:56 PM in reply to: Hallex

    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

    Please use plain text.
    Valued Contributor
    SENL1362
    Posts: 58
    Registered: ‎07-20-2011

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

    01-11-2012 11:21 PM in reply to: mgorecki

    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
        }

    }

     

    Please use plain text.
    Mentor
    Posts: 370
    Registered: ‎09-23-2004

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

    01-17-2012 07:00 AM in reply to: SENL1362

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

     

    Best regards,

    Mark

    Please use plain text.
    *Expert Elite*
    Posts: 6,416
    Registered: ‎06-29-2007

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

    01-18-2012 12:49 AM in reply to: mgorecki

    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
    -------------------------------------------------------------------------
    Please use plain text.