Page 1 of 1

Suppressing display of views

Posted: Fri Aug 08, 2014 9:48 am
by startz
Is there a way to suppress the display of a series view? I have a program that uses pon and a spool to capture views of a number of series. I'd rather the view window didn't open so I don't have to close it afterwards.

Re: Suppressing display of views

Posted: Fri Aug 08, 2014 10:10 am
by EViews Gareth
Try putting a "do" in front of whatever command you're doing.

Code: Select all

do mseries.uroot do myseries.line
etc...

There are three ways to issue object views/procs. "show" opens the object and does the view. "freeze" freezes the view into a new object. "do" does the view without opening the object. There is, usually, an implicit "show", but you can override it with a freeze or a do.

Re: Suppressing display of views

Posted: Fri Aug 08, 2014 10:28 am
by startz
Thanks!