Anyone knows of an example for crea
Anyone knows of an example for crea
(OP)
Anyone knows of an example for creating property manager view using "ProperyMangaerPage" method in VB? I tried to creat it using C++ COM and I keep getting an "unknown error, contact Solidworks" message.
I am hoping I can have better luck with VB.
Thanks.
I am hoping I can have better luck with VB.
Thanks.
jevakil@mapdi.com
One nuclear bomb can ruin your whole day.






RE: Anyone knows of an example for crea
Dim swPart As SldWorks.PartDoc
Dim swPage As PropMgr
Dim Retval As Long
Set swApp = CreateObject("SldWorks.Application")
If Not (swApp.ActiveDoc Is Nothing) Then
If swPage Is Nothing Then
Set swPage = New PropMgr
swPage.Show 'display it
Else
swPage.Show
End If
End If
RE: Anyone knows of an example for crea
RE: Anyone knows of an example for crea
Regards
jevakil@mapdi.com
One nuclear bomb can ruin your whole day.