There are several GUIs that you can use:

Win32::GUI
very easy to program, it uses the Win32 API, so the GUI has the look and feel of Windows.
It works only for Win32 platforms

Tk
easy to program, it is multiplatform (*nix, Windows), well documented (there is also an excellent book: Mastering Perl/Tk by O'Reilly), but it has its own look and feel

Wx
Object Oriented, it is multiplatform but has the look and feel of the WM used by the OS (so on Windows it looks like Win32::GUI)

Prima
multiplatform GUI with its own look and feel, useful expecially with 2D graphics


To made an exe from the script, you have 4 ways, 2 commercials and 2 open source:

1) perl2exe by Indigostar

2) perlapp by Activestate (part of the Perl Development Kit)

are 2 excellents tools that made your script an executable program (for Win32 and some *nix). They are mature products with pros and cons.

3)rd way is PAR an open source packer, that will merge soon with

4) App::Packer, the 2nd open source way to do Perl executables

In reply to Re: Making a GUI based Win32 app from Perl script. by dree
in thread Making a GUI based Win32 app from Perl script. by Speedfreak

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.