Screenupdating

How can I prevent NX from refreshing display if I have it cycling through each detail (making it the displayed part)

essentially a applications.screenupdating = false for nx?

You can use the .SetDisplay function to prevent the graphics window from updating while your code runs. After you unsupress the display, you must also regenerate it to make sure that it is up to date.

theUfSession.Disp.SetDisplay(UFConstants.UF_DISP_SUPPRESS_DISPLAY)

'Do stuff

theUfSession.Disp.SetDisplay(UFConstants.UF_DISP_UNSUPPRESS_DISPLAY)
theUfSession.Disp.RegenerateDisplay()