in reply to Re^18: problem with par as other user
in thread problem with par as other user

Thanks for the links! Quite usefull. And you seem to have been doing this for a while. :)

Question: Since I've been using Perl/Tk alot, what about all those lovely Tk::... modules then? How can one use them with Tcl/Tk instead? Is it just to use them as is or what? Or maybe I'm to tired to realize something crucial... :)

Among others I find these quite usefull:
Tk::JComboBox;
Tk::MListbox;
Tk::DynaTabFrame;

Doesn't seem that they are included with Tcl/Tk installation.. Maybe they exist on a CPAN like site somewhere...?

/ Ace

Replies are listed 'Best First'.
Re^20: problem with par as other user
by vkon (Curate) on Jul 02, 2006 at 17:06 UTC
    Tk::JComboBox is poor substitute, Tcl/Tk allows similar widgets *yet* it allows native drop-down box!

    MListbox - look at http://mini.net/tcl/6784

    Tk::DynaTabFrame - BLT's tabs are MUCH more attractive, yet more powerful, see http://vkonovalov.ru/cgi-bin/perl-tcltk-wiki.cgi/40

    As for your own pure-perl widgets -- sorry, no coffee.
    perl/Tk's megawidgets are done with Tix, and I even implemented compatibility stuff in Tcl::Tk which worked, but I never released this because I lost interest in this.