Page 1 of 1

Program Log

Posted: Tue Dec 02, 2014 9:41 am
by MOG
Hi,

Is there a way to supress the Program Log so it is not the front window, or even better, a way to save (freeze) the Program log as an object within the workfile?

Regards
Martin

Re: Program Log

Posted: Tue Dec 02, 2014 11:43 am
by EViews Jason
Unfortunately not. This is a kludge but you could do the following:

1. create log window via a program

Code: Select all

logmode all statusline hello
2. minimize it the log window by pressing the _ button at the top right of the window
3.Run your program

To answer the second part, at the end of your program you would have to save the log to a file and then append that file to a text object. For example

Code: Select all

logsave output.txt textobject mytextobject mytextobject.append(file) output.txt

Re: Program Log

Posted: Tue Dec 02, 2014 3:18 pm
by MOG
OK, thanks!

Martin

Re: Program Log

Posted: Wed Dec 03, 2014 3:01 am
by MOG
Works like a charm,

But is there no way to close the Program Log?

Regards
Martin

Re: Program Log

Posted: Fri Dec 05, 2014 10:11 am
by EViews Jason
Unfortunately not