If you want a stand alone application - write a stand alone application, Tk would provide an adequate UI. Get ready to waste lots of time installing it and keeping it upgraded, however. A better route would be a networked application, where a central server does the majority of the computing and the clients provide the UI.

If you want a networked application, you will have to do the socket connections yourself (be sure and take a gander at CPAN first - lots of wheels ready to roll). You will need to write a server program that runs on a central box in your network, and you will need to write the client program to talk to the server on a designated port. Then you install the clients as needed on the other boxes in your network (of course, now you are back to having to maintain upgrades).

But why do that when it has already been written. It's called HTTPD!

So, what i am getting at is that you are trying to solve the problem with a purple banana - wrong solution! What you need is to beef up the server - either with hardware or by switching from plain-jane CGI to mod_perl.

The former is easier, but the later is cheaper (free!) and worth the trouble in the long run.

Jeff

R-R-R--R-R-R--R-R-R--R-R-R--R-R-R--
L-L--L-L--L-L--L-L--L-L--L-L--L-L--

In reply to (jeffa) 3Re: exe on local machine by jeffa
in thread exe on local machine by Kevin Ar18

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.