jmarkus
Mechanical
- Jul 11, 2001
- 377
This might be a VB.NET question as opposed to an NX Journal specific question, but...
I am trying to call a standalone NXOpen DLL (that I would normally execute from File->Execute->NXOpen) from within an NX Journal. It is not supported by the journal record, so I am unsure how to do that.
For example (not real code):
Thanks,
Jeff
I am trying to call a standalone NXOpen DLL (that I would normally execute from File->Execute->NXOpen) from within an NX Journal. It is not supported by the journal record, so I am unsure how to do that.
For example (not real code):
Code:
...
Module NXJournal
Sub Main
Dim theSession As Session = Session.GetSession()
Dim workPart As Part = theSession.Parts.Work
Dim lw As ListingWindow = theSession.ListingWindow
Dim displayPart As Part = theSession.Parts.Display
...
Execute C:\files\myNXOpen.dll
....
Thanks,
Jeff