33456
Mechanical
- May 23, 2007
- 10
How can i get info from the Configuration Specific tab ??
This is how to do it for the Custom tab:
Dim swApp As Object
Dim part As Object
Dim what As String
Sub main()
Set swApp = Application.SldWorks
Set part = swApp.ActiveDoc
what = part.CustomInfo2("", "M_opm_part")
MsgBox what
End Sub
This is how to do it for the Custom tab:
Dim swApp As Object
Dim part As Object
Dim what As String
Sub main()
Set swApp = Application.SldWorks
Set part = swApp.ActiveDoc
what = part.CustomInfo2("", "M_opm_part")
MsgBox what
End Sub