in reply to Re: perl/tk show script progress
in thread perl/tk show script progress

Much appreciated!! Looks better, but I will still need to work on this to make my second perl script to execute and run in a GUI window. I'd really like to get my second perl script to run within the same window as the main GUI, such as, one of the tabs. Essentially one large GUI window at the top some buttons and at the bottom an inset window where my second perl script would run.

Replies are listed 'Best First'.
Re^3: perl/tk show script progress
by Anonymous Monk on Sep 08, 2011 at 23:30 UTC

    Hi,

    Not sure why you need a second script, could you not use a sub kicked off by a button?

    I think you want to print text messages 'log style', you could use a scrolled-textbox for this. Check for it in the Tk manual.

    J.C.

Re^3: perl/tk show script progress
by Anonymous Monk on Sep 08, 2011 at 23:35 UTC

    Or perhaps a listbox, non-selectable, might do the trick.

    J.C.

      Thank you JC I will look into this tomorrow. I have developed a tool with perl to migrate routers running IOS to XR. Now I want to incorporate the migration tool into a GUI. I'm having a difficult time deciding if I should use perl/tk or some other language to do so.