Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating multiple features at a time 1

Status
Not open for further replies.
Joined
May 5, 2021
Messages
5
Location
DE
Hi Everyone,

I've been using NX Journals to help create some larger but fairly simple parts. But because NX individually graphically displays every little change, this often takes very long. I know that in other CAD programs it is possible to only display the changes once the journal has run to completion. Does anyone know if this is possible in NX as well?

Thank you!

Regards,
Constantin
 
I don't know about doing this in a Journal, but if you were running a normal program, like GRIP or User Function, there are commands to delay the update of the display. In GRIP it was DRAW/OFF and DRAW/ON.

John R. Baker, P.E. (ret)
EX-'Product Evangelist'
Irvine, CA
Siemens PLM:
UG/NX Museum:

The secret of life is not finding someone to live with
It's finding someone you can't live without
 
In a journal, it looks something like this:

Code:
SetDisplay(UFConstants.UF_DISP_SUPPRESS_DISPLAY)
'do stuff
SetDisplay(UFConstants.UF_DISP_UNSUPPRESS_DISPLAY)
RegenerateDisplay()

www.nxjournaling.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top