Re: Embedding Tk in an MFC application



Okay, I'm working around my last prolblem by using a Tcl_Eval call to
source auto.tcl as well and it works. Now I have a new problem.

The following sample is supposed to display a window saying "hello
world":

label .hello -text "Hello World"
pack .hello

Unfortunately it does not. The interpreter executes the commands and
then ends. No window is ever shown. =(

.