> I am encountering a few problems with my program. the first problem is that > the program does not close completely when the GUI is closed. It seems as > though the POE::Client component is still running. How can I assure that the > program is destroyed completely?
I don't think you want this line: 52 Gtk2->main; Reading back through the history of this thread it seems like you added that line to force your POE session to stay alive. However, that's not the right way to go about it. You'll notice the Gtk2-main call never returns (try putting a print statement below it). That means control never goes back to the POE kernel and nothing else POE controls can work. Whitney