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

    .NET

    Reply
    Contributor
    sivaulagu
    Posts: 11
    Registered: ‎01-19-2012

    Re: recieving run time error for acmgd.dll

    01-19-2012 04:05 AM in reply to: alfred.neswadba

    anyway thanks yaar.... thank u verymuch

    Please use plain text.
    *Expert Elite*
    dgorsman
    Posts: 3,288
    Registered: ‎10-12-2006

    Re: recieving run time error for acmgd.dll

    01-19-2012 03:19 PM in reply to: sivaulagu

    You have two options for building managed .NET "stuff" for AutoCAD.  The first is to create an EXE, or stand-alone application.  This sends instructions to a running session of AutoCAD.  Since you have one application telling another what to do, this is slow and has some limitations so is considered "second best".  The second method is to create a DLL that is loaded into a running session of AutoCAD, either through a call to the NETLOAD command or loaded on demand using a registry switch.  This is the preferred method, since it is being run by AutoCAD (instead of the other way around) it is faster and has more options of getting things done.

     

    I suggest getting started using one of the various "Getting Started" guides available online.  Try plugging "getting started with AutoCAD .net" into a search engine. :smileyhappy:

    ----------------------------------
    If you are going to fly by the seat of your pants, expect friction burns.
    Adopt. Adapt. Overcome. Or be overcome.


    Please use plain text.