Hi Eveyone, First of all I created one GUI with buttons,labels, texts using perl Tk, now after that i created that .pl script to .exe fil. Now I want another .pl script to be called by clicking on a button in that GUI. Right now it works fine by including this code in the parent perl script(.exe one) : sub update_script {system($^X, 'test2.pl', $ent -> get(), $ent_pass -> get(),$arg_32, @values, @names);} This function update_script is being called on one of the button in test1.pl or test1.exe Now the button on the test1.exe works fine on click and shows test2.pl output but in case if I put this .exe somewhere else then it says perl file unrecognized. Can someone tell me how to solve theses kind of errors? Regards, Jack

In reply to How to call a perl script through .exe by jack123

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.