From what I've seen, and used it for, Tk is very useful for small/medium-sized apps, because in some ways it's a slightly limited module. Having said that, though, it's certainly possible to do some very complex things with it, if you're willing to think through the problem carefully.

The other advantage of Tk is that it's platform-independant - it'll work just as well on Windows as it will on Unix, which can be a huge benefit if you need that cross-platform capability. The downside to this is that it uses the Tk widget set, which means that it looks similar, but not quite the same as, the platforms in question.

Win32:GUI I'm not so familiar with - but from what I've read it's a similar tool to Tk, but Windows-native. It looks fairly powerful, and, as with Tk, the documentation looks very extensive.

There're also options like wxPerl, which is a very usable Perl wrap-around to the wxWindows toolkit.

My personal choice on a day-to-day basis is Tk - it's so far allowed me to do everything I've needed to, and I find that the cross-platform functionality is invaluable in my workplace (we use both NT and Unix boxes). It's also pretty quick and easy to knock a working GUI together, and there're some very good tutorials and books out there about the module.

Having said that, I'm a firm believer in the right tool for the right job - so what you're actually going to use it for is much more important, in my opinion ...

As runrig says, though, take a look at the FAQ - there's a lot more information on there.

Just some quick thoughts ..
-- Foxcub


In reply to Re: GUIs with perl by Tanalis
in thread GUIs with perl by primus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.