vegetagaru
Computer
- Jan 14, 2015
- 134
hello all, im new at journaling but could anyone help me on this one:
cowski snippet(thanks for it):
could anyone help me on how can i load the component if it isn't fully loaded ?
Thanks in advance
NX8.5 - NX9 User
cowski snippet(thanks for it):
Code:
Dim thePart As Part = theComponent.Prototype.OwningPart
Try
If thePart.IsFullyLoaded Then
'component is fully loaded
Else
'component is partially loaded
End If
Catch ex As NullReferenceException
'component is not loaded
End Try
could anyone help me on how can i load the component if it isn't fully loaded ?
Thanks in advance
NX8.5 - NX9 User