Image file from NXOpen/Journal
Image file from NXOpen/Journal
(OP)
I have tried searching the documentation for this, but I'm relatively new to this (student working part time on new project)...
Is there any way I can call to open an image file from within the Journal? Reason is it asks for input from user, but I'm required to graphically show the user what is the required info to reduce errors. Is there some way I can make this happen?
Thanks,
Guillermo391





RE: Image file from NXOpen/Journal
If so, the following is probably the easiest way to do it (only uses .net functionality, no NXOpen functions required).
CODE
Option Strict Off Imports System Imports NXOpen Module Module1 Sub Main() 'image file to open Dim myImage As String = "{replace with path to your image file}" Try System.Diagnostics.Process.Start(myImage) Catch ex As Exception 'handle error End Try End Sub End Modulewww.nxjournaling.com
RE: Image file from NXOpen/Journal
Mark Rief
Product Manager
Siemens PLM