in reply to Re: Tk programmatically monitor change in Listbox
in thread Tk (Tcl::Tk) programmatically monitor change in Listbox
The user will add a new element (or a set of elements) to the set of elements displayed in the Listbox. This is done programmatically. The list can be recreated with no problem at any time. The problem is that this operation is done programmatically in Tcl (embedded in Perl) through Tcl.pm/Tcl::Tk inside a
$int->Eval();#Tcl code which adds the element to the Listbox goes here
Unfortunately, me and my collegue were not able to find a way to call a Perl subrutine from inside the Eval code at the moment of adding the new element (I guess it is not possible at all). This is the reason why I am searching for an alternative to call this subrutine when the set of elements changes. It goeas without saying that for the meoment we can not substitute the Tcl code with Perl code, which would make this operation superfluous.
The original code posted in this thread is in Tk because I want(ed) to find a solution to my proposed approach - which is indipendent to Tcl.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Tk programmatically monitor change in Listbox
by jcb (Parson) on Jan 07, 2020 at 02:15 UTC | |
by IB2017 (Pilgrim) on Jan 07, 2020 at 11:12 UTC | |
Re^3: Tk programmatically monitor change in Listbox
by Anonymous Monk on Jan 07, 2020 at 04:21 UTC | |
by IB2017 (Pilgrim) on Jan 07, 2020 at 11:22 UTC | |
by huck (Prior) on Jan 07, 2020 at 15:34 UTC | |
by Takamoto (Monk) on Jan 08, 2020 at 08:47 UTC | |
by IB2017 (Pilgrim) on Jan 07, 2020 at 17:17 UTC | |
by jcb (Parson) on Jan 08, 2020 at 00:37 UTC |