Submitted by pnayak.cttc on Sat, 10/31/2020 - 07:08
Forums:
Is there anyway, by which we can open an html page in NX via Journal?
If there is any sort of journal please share.
Is there anyway, by which we can open an html page in NX via Journal?
If there is any sort of journal please share.
re: open HTML page
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
can you please share this journal? If you have.
Parthasarathi Nayak
re: open HTML page
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
THANK YOU
Parthasarathi Nayak