SeeView Manual
SeeView Statements and Script Symbols
HP NonStop SeeView Manual—526355-004
9-131
WINDOW
Examples
An example of the WINDOW statement follows.
This example displays the window following it.
This example displays the window following it.
TASK comint; { declare comint
WINDOW comint,"who"; { show results of WHO command in window
TASK oprlog:=seedit { declare seedit process as a logger
STARTUP "MONITOR OPRLOG";
WINDOW oprlog CACHE EOFSEEK; { Active window on last page of oprlog
WINDOW oprlog CACHE -/DOWN/; { or, on most recent DOWN message
TASK PUP; {4 windows displaying contiguous listdev
WRITE PUP,"LISTDEV";
FOR 4 DO BEGIN
WINDOW PUP SIZE 20,24; Right:20;
FLUSH;
END;
VAR w:=36, h:=7;
TASK fup;
WINDOW fup SIZE w,h;
WINDOW fup,"INFO *" SIZE w,h;