NX11 - Journal - Listing Window Can only be written to once in a session?
NX11 - Journal - Listing Window Can only be written to once in a session?
(OP)
Hello,
I have a journal which I have written for NX9 which outputs some information to the listing window. I have no problems running it in NX9.
When I run it in NX11, it works fine if I have a new session of NX running, but if I try to run the journal again within the same session, it doesn't actually write anything to the listing window. I checked the Log File from NX and found:
right after the line which shows I ran the journal.
Does NX11 require something else to use the listing window correctly, since it is a more "feature rich" window than the one in NX9 was?
Thanks,
Jeff
I have a journal which I have written for NX9 which outputs some information to the listing window. I have no problems running it in NX9.
When I run it in NX11, it works fine if I have a new session of NX running, but if I try to run the journal again within the same session, it doesn't actually write anything to the listing window. I checked the Log File from NX and found:
CODE
JavaScript Console Message: SyntaxError: Unexpected EOF Line number: 1 Source id: undefined
Does NX11 require something else to use the listing window correctly, since it is a more "feature rich" window than the one in NX9 was?
Thanks,
Jeff





RE: NX11 - Journal - Listing Window Can only be written to once in a session?
www.nxjournaling.com
RE: NX11 - Journal - Listing Window Can only be written to once in a session?
CODE
Guide.InfoWriteLine("Text")It looks like to use the "new" listing window properly there is a different function. However, I cannot find any supporting information on this.
Jeff
RE: NX11 - Journal - Listing Window Can only be written to once in a session?
Looks like they created a new class so people could more easily follow along with the examples in the "getting started" guide. The .InfoWrite and .InfoWriteLine methods belong to this class. The ListingWindow.WriteLine and .WriteFullLine are not marked as deprecated or obsolete, they should still be fully supported.
www.nxjournaling.com
RE: NX11 - Journal - Listing Window Can only be written to once in a session?
But at least I learned something new (and downloaded the NX11 net_ref.chm for future reference).
Thanks,
Jeff
RE: NX11 - Journal - Listing Window Can only be written to once in a session?