AutoCad 2011 Not Open
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
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