How to display info for user through Journal / NXOpen ?
How to display info for user through Journal / NXOpen ?
(OP)
Hello,
I am wanting to display information to a user when executing a journal/NXOpen application without using the Information Window or Pop-ups. I want to utilize the "bar" where progress / selection manager display information to display text throughout a program. I cannot find this anywhere on GTAC or the NXOpen guide. Anyone know where I can access this?
Please see the attached photo.
I am using NX8.5.
Thanks in advance,
Andrew
I am wanting to display information to a user when executing a journal/NXOpen application without using the Information Window or Pop-ups. I want to utilize the "bar" where progress / selection manager display information to display text throughout a program. I cannot find this anywhere on GTAC or the NXOpen guide. Anyone know where I can access this?
Please see the attached photo.
I am using NX8.5.
Thanks in advance,
Andrew
Design Engineer, NX 7.5





RE: How to display info for user through Journal / NXOpen ?
CODE
Option Strict Off Imports System Imports NXOpen Imports NXOpen.UF Module Module1 Sub Main() Dim theSession As Session = Session.GetSession() Dim theUfSession As UFSession = UFSession.GetUFSession theUfSession.Ui.SetPrompt("your prompt here") theUfSession.Ui.SetStatus("your message here") MsgBox("pause") End Sub End Modulewww.nxjournaling.com
RE: How to display info for user through Journal / NXOpen ?
Design Engineer, NX 7.5