forked from dirkrossger/ReadDwg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
74 lines (66 loc) · 2.12 KB
/
Form1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using Autodesk.AutoCAD.Interop;
using Autodesk.AutoCAD.Interop.Common;
using Autodesk.AutoCAD;
using System.IO;
namespace ReadDwgFile
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private Autodesk.AutoCAD.Interop.AcadApplication app;
private void button1_Click(object sender, EventArgs e)
{
this.Close();
// "AutoCAD.Application.17" uses 2007 or 2008,
// whichever was most recently run
// "AutoCAD.Application.17.1" uses 2008, specifically
const string progID = "AutoCAD.Application";
AcadApplication acApp = null;
try
{
acApp = (AcadApplication)Marshal.GetActiveObject(progID);
}
catch
{
try
{
Type acType =
Type.GetTypeFromProgID(progID);
acApp =
(AcadApplication)Activator.CreateInstance(
acType,
true
);
}
catch
{
MessageBox.Show(
"Cannot create object of type \"" +
progID + "\""
);
}
}
if (acApp != null)
{
// By the time this is reached AutoCAD is fully
// functional and can be interacted with through code
acApp.Visible = true;
//acApp.ActiveDocument.SendCommand("_MYCOMMAND ");
acApp.ActiveDocument.SendCommand("(command " + (char)34 + "NETLOAD" + (char)34 + " " +
(char)34 + "A:/Github/ListItems/bin/Debug/ListItems.dll" + (char)34 + ") ");
}
}
}
}