Journal for Opening a html page.

Is there anyway, by which we can open an html page in NX via Journal?
If there is any sort of journal please share.

If you want to open an html page in the user's default browser, you can use code like that below:

System.Diagnostics.Process.Start("path\to\your.html")

can you please share this journal? If you have.

Parthasarathi Nayak

That one line of code above is pretty much all there is to it...
Just edit the value in parentheses to point to your desired webpage/html file.


Option Strict Off
Imports System
Imports NXOpen

Module open_html

Dim theSession As Session = Session.GetSession()

Sub Main()

System.Diagnostics.Process.Start("http://www.nxjournaling.com/comment/5967#comment-5967")

End Sub

End Module

THANK YOU

Parthasarathi Nayak