On Thu, 20 Feb 1997, Dirk Olbertz wrote:
> I`m not sure, if this is a question relating to vtcl. I made some
> toplevel-widgets with vtcl. Each of it has to represent some specific
> data. Now I have the problem, that I want to open one window multiple
> times, with different data in it. Also I do not want to rewrite the
> code multiple times. I need something like classes for tcl/tk. I
> think I've read somewhere about it, but does it work together with
> vtcl and does vtcl then makes use of the features ?
Dirk,
I'm very close to releasing 1.09 and in this new version toplevels
can be instantiated multiple times if alternate paths are passed as
a last reference. For example, instantiating a normal window goes
like this:
Window show .top1
to create a second identical window with another base:
Window show .top1 .alternate
where ".alternate" can be anything you want.
-stewart-