Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross 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.
May 5, 2021
5
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
 
Replies continue below

Recommended for you

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