Add-in

Discussion in 'AutoCAD' started by vijaya, Sep 4, 2004.

  1. vijaya

    vijaya Guest

    Hi,
    How to create an add-in for autocad?
    I want to add a vba program as an add-in.
    Thanks in advance
     
    vijaya, Sep 4, 2004
    #1
  2. Can you expand on what you mean by:
    Per your earlier post, you already wrote a dvb so you already have an
    add-in. So, what are you really asking? How to deploy it? How to
    automatcally load it?

    -- Mike
    ___________________________
    Mike Tuersley
    CADalyst's CAD Clinic
    Rand IMAGINiT Technologies
    ___________________________
    the trick is to realize that there is no spoon...
     
    Mike Tuersley, Sep 4, 2004
    #2
  3. vijaya

    vijaya Guest

    Thanks for the reply.
    I want to load few programs automatically when the autocad starts. eg. If I load the programs in another system, if I start autocad then a new menu must be added in which I call my programs.
     
    vijaya, Sep 6, 2004
    #3
  4. vijaya

    Ed Jobe Guest

    To do that, create a dvb called "acad.dvb". Add a standard module and create
    a sub called "AcadStartup" and it will be automatically run at startup, just
    like acad.lsp does.

    Public Sub AcadStartup ()
    'do any startup processing here.
    'load dvb's etc.
    End Sub

    --
    ----
    Ed
    ----
    I load the programs in another system, if I start autocad then a new menu
    must be added in which I call my programs.
     
    Ed Jobe, Sep 7, 2004
    #4
  5. vijaya

    vijaya Guest

    Thanks a lot.
    Its really working to create a toolbar. I want to know how to add a menu to the existing menu once I start acad.
     
    vijaya, Sep 8, 2004
    #5
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.