Message 1 of 1
GetObject vs. GetACtiveObject
Not applicable
08-24-2005
04:19 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
When getting the current instance of an acad session from a .net project, there seems to be two ways to do it:
Dim myApp As AcadApplication
myApp = Marshal.GetActiveObject("Autocad.Application.16.2")
Dim myApp As AcadApplication
myApp = GetObject(, "Autocad.Application.16.2")
both seem to work ok. What's the difference? Which one should be used, why?
thanks,
mark c.
phoenix
Dim myApp As AcadApplication
myApp = Marshal.GetActiveObject("Autocad.Application.16.2")
Dim myApp As AcadApplication
myApp = GetObject(, "Autocad.Application.16.2")
both seem to work ok. What's the difference? Which one should be used, why?
thanks,
mark c.
phoenix