Fully load component via journal
Fully load component via journal
(OP)
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
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





RE: Fully load component via journal
RE: Fully load component via journal
NX8.5 - NX9 User
RE: Fully load component via journal
NX8.5 - NX9 User
RE: Fully load component via journal
CODE
{theComp}.Prototype.OwningPart.LoadThisPartFully()The part object also has a .LoadFully method that may be handy depending on your needs.
www.nxjournaling.com
RE: Fully load component via journal
NX8.5 - NX9 User