Re: The system queue of views

From: [at]} <Gérard>
Date: Sat, 14 Sep 2002 19:05:28 +0200

Hello,

You can try this example (MSWindows version):

MODULE TestWindows;
IMPORT

Out, Views, HostWindows;

PROCEDURE Do*;

VAR

w: HostWindows.Window;
t: Views.Title;

BEGIN (*Do*)
w:= HostWindows.dir.First();
WHILE w# NIL DO
w.GetTitle(t);
Out.String(t); Out.Ln;
w:= HostWindows.dir.Next(w);
END;
END Do;

END TestWindows.

Regards.

Gérard

----- Original Message -----
From: Hector
To: blackbox{([at]})nowhere.xy
Sent: Saturday, September 14, 2002 6:31 PM
Subject: The system queue of views


Hello again.
Is it possible to access to the system queue where the views are allocated for it's displaying?. Well, the problem really is that I want to know the views that are opened. I have a list of nodes associated to each opened view, but I have to delete the node if its view is closed, and I don't know the way of knowing when the view is closed.
Received on Sat Sep 14 2002 - 19:05:28 UTC

This archive was generated by hypermail 2.3.0 : Thu Sep 26 2013 - 06:29:36 UTC