Message 1 of 4
Not applicable
04-20-2012
03:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I use this code for Autocad 2010 to 2012
{code}
public void MySave()
{
Document doc = Application.....MdiActiveDocument;
object oAcadDoc = doc.AcadDocument;
oAcadDoc.GetType().InvokeMember( "Save",
BindingFlags.InvokeMethod, null, oAcadDoc, null);
}
But this not function in Autocad 2013.
Can you help me ?
Solved! Go to Solution.