vb journal to open non master part
vb journal to open non master part
(OP)
Hi
Interactively when I open a non master part sometimes its open in drafting anf
Sometimes in modeling.
Programmaticly how to open a non master
part and know if it will be opened
in modeling mode or in drafting mode.
Is the command are the same for both
native and manager.
Thanks in advanced.
Interactively when I open a non master part sometimes its open in drafting anf
Sometimes in modeling.
Programmaticly how to open a non master
part and know if it will be opened
in modeling mode or in drafting mode.
Is the command are the same for both
native and manager.
Thanks in advanced.





RE: vb journal to open non master part
opening a master part in nx manager
mode I mean programmaticly using the same
function.
Thank you.
RE: vb journal to open non master part
You can set a customer default to open the part according to the last "saved" actif module (modeling, drafting, cam...)
Regards
Didier Psaltopoulos
http://www.psi-cad.fr
RE: vb journal to open non master part
But I need to do it in vb journal api
methods.
RE: vb journal to open non master part
RE: vb journal to open non master part
RE: vb journal to open non master part
OK, but it's so simple with this setting in Customer default
Regards
Didier Psaltopoulos
http://www.psi-cad.fr
RE: vb journal to open non master part
The problem was arise to me in a journal
that need to open a non master drawing
that should be run regardless of the
setting on the customers default.
I can't know the setting of each user.
RE: vb journal to open non master part
http://nxjournaling.com/comment/1376#comment-1376
www.nxjournaling.com
RE: vb journal to open non master part
Actually these lines of code, I got by
Journal recorded as mentioned on my above post.
theSession.Parts.SetNonmasterSeedPartData(strOpenString)
Dim prtBasePart As BasePart
Dim lsBasePart As PartLoadStatus
prtBasePart = theSession.Parts.OpenBaseDisplay(strOpenString, lsBasePart)
lsBasePart.Dispose()