.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

AutoCad 2011 Not Open

3 REPLIES 3
Reply
Message 1 of 4
ywseo
537 Views, 3 Replies

AutoCad 2011 Not Open

Hi.
I'm CAD Addin developer.
Um ...
AutoCAD 2010 OPEN success.
AutoCAD 2012 OPEN success.
But .... AutoCAD 2011 OPEN failure.

AutoCAD 2010, 2011, 2012 all same source.
Why Not OPEN AutoCAD 2011 ... TT.

DWGCHECK applied ...

Dev Tool: Visual Studio 2008
CAD: AutoCAD Mechanical 2011

=====================================================

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim acadApp As AcadApplication

        Try
            If acadApp Is Nothing Then
                acadApp = GetObject(, "AutoCAD.Application")
            End If
            acadApp.Visible = Visible

        Catch ex As Exception
            Try
                acadApp = CreateObject("AutoCAD.Application.18.1")
                acadApp.Visible = Visible
                'Shell("C:\Program Files\Autodesk\ACADM 2011\acad.exe")
                acadApp.Visible = Visible
            Catch ex1 As Exception
                MsgBox(ex1.Message)
            End Try
        End Try
    End Sub

3 REPLIES 3
Message 2 of 4
dynamicscope
in reply to: ywseo

Did you try debugging it?

In which line do you get the error?

Message 3 of 4
kdub_nz
in reply to: ywseo

 

acadApp = CreateObject("AutoCAD.Application.18.1")

 

are you accessing

18.0

18.1

18.2

 

??

 

Regards

 


// Called Kerry in my other life.

Everything will work just as you expect it to, unless your expectations are incorrect.

class keyThumper<T> : Lazy<T>;      another  Swamper

Message 4 of 4
Balaji_Ram
in reply to: ywseo

Hi,

 

Using the version independent program id as “AutoCAD.Application” should invoke the last run version of AutoCAD.

 

So you may want to check which version of AutoCAD was invoked just before you run this code.

If not you can mention the prog id of a AutoCAD version that you specifically want to launch.

Ex : “AutoCAD.Application.18.1” for AutoCAD 2011.

 

Using the registry editor open the following key and note the CLSID :

“HKEY_CLASSES_ROOT\AutoCAD.Application\CLSID”

 

For ex : If the CLSID is “6D7AE628-FF41-4CD3-91DD-34825BB1A251”

Look for  “HKEY_CLASSES_ROOT\CLSID\{6D7AE628-FF41-4CD3-91DD-34825BB1A251}\LocalServer32”

 

The path to the executable that will be launched when “AutoCAD.Application” is specified can be verified here.

 

Be careful while working with the registry editor.

 

 



Balaji
Developer Technical Services
Autodesk Developer Network

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost