in reply to perl, Tk GUI, problem with getOpenFile, in a packed program
It could very well be that you don't have enough "use" statements. These statements force compilation and inclusion of the code into the .exe file. The above are very standard widgets. Stick those "use statements" into your source. And see what happens. In std environment, "use Tk;" is enough, but that is not enough for a "compiled version".use Tk; use Tk::LabFrame; use Tk::Listbox; use Tk::Scrollbar; use Tk::Button; use Tk::Menubutton; use Tk::Menu; use Tk::Widget; use Tk::Label; use Tk::Entry;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: perl, Tk GUI, problem with getOpenFile, in a packed program
by gbertrand (Initiate) on Jul 22, 2009 at 16:07 UTC | |
by Marshall (Canon) on Jul 22, 2009 at 17:49 UTC | |
|
Re^2: perl, Tk GUI, problem with getOpenFile, in a packed program
by Anonymous Monk on Jul 22, 2009 at 22:44 UTC | |
by gbertrand (Initiate) on Jul 23, 2009 at 12:27 UTC | |
by Marshall (Canon) on Jul 24, 2009 at 21:31 UTC |