Hi,
1)� I�have a application that has a lot of buttons. Each one
independent to the other. Some of them opens a window, calling a
procedure (create_a_window) that I�created, and must wait it to return
a string.
The question is that to do this, I�must do a "twait window", but this
makes the others buttons inacessible, until the window is destroyed,
right ??? Is there another way ?
To explain better, here are some sentences :
I�must make (when the button is clicked) :
set result [create_a_window window_name]
tkwait window window_name
puts $result
, where �"create_a_window is a procedure that returns a string. And
I�must set the result variable to the string that the procedure
returned, but I�must alow the other buttons to be executed.
2)�I�want to have to separated windows, each one with a listbox, and
when I�press a plus1_button in window2, the selection on listbox2 is
added to listbox1 on the other window. Is there any way to do this,
without calling directly llistbox1 from window2 ??
Thanks for any help...
Alex�Carlos