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 TugboatEng on being selected by the Eng-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
Joined
Jun 21, 2011
Messages
46
Location
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
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
 
YES! THANKS!

Design Engineer, NX 7.5
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top