Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

How to display info for user through Journal / NXOpen ? 1

Status
Not open for further replies.

Techomick

Mechanical
Jun 21, 2011
46
0
0
US
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

Design Engineer, NX 7.5
 
 http://files.engineering.com/getfile.aspx?folder=47ed0cc8-5380-4e4d-affc-157c29e6b1f8&file=info_display.jpg
Replies continue below

Recommended for you

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 Module

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