Gernot Jander wrote:
>
> I need to "load" some dynamically loadable modules (*.so) into
> a vtcl application (e.g. database modules).
> Where do I place the load command during the edit phase of
> vtcl? If I put it manually into the created code they
> disappear every time I edit with vtcl.
vTcl creates two "empty" procedures, "init" and "main".
init is executed at the very beginning of your application; main
is executed at the end.
You'd probably place your load commands in the "init" proc. You can
do this from within vTcl.
--
...RickM...