Set swDocument = Application.SldWorks.ActiveDoc
Set Sheet = swDocument.GetCurrentSheet
MySheet = Sheet.GetName
MyPath = swDocument.GetPathName
Const swSelNOTES = 15
I'm taking a Solidworks 2010 macro and attempting to update it to Solidworks 2013 and it seems they have removed/depreciated the GetCurrentSheet
property on Application.SldWorks.ActiveDoc
does anyone know the current method to get that?
As far as I remember and know, there was at no time a GetCurrentSheet method on a ModelDoc2 object, it is, in fact, a method of the DrawingDoc type.
So, reading your code, I would suppose that ActiveDoc is not a DrawingDoc. To be sure, simply use:
Or
And you know if this is the case. I would also recommend you to check the following additional information from the API documentation:
http://help.solidworks.com/2013/English/api/sldworksapi/solidworks.interop.sldworks~solidworks.interop.sldworks.idrawingdoc~getcurrentsheet.html
http://help.solidworks.com/2013/English/api/sldworksapi/Get_and_Set_Sheet_Properties_Example_VB.htm