Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I've refactored your code to use strictures and get rid of various global variables. The window variable and file path get passed into the OK dialog as closures instead of using global variables. The code now works as I understand you would like.

use strict; use warnings; use Tk; my @files = 1 .. 10; for my $file (@files){ { my $mw = MainWindow->new; $mw->geometry("400x120"); $mw->title("CI Generation"); #-----------------Frames-----------------------# my $main_frame = $mw->Frame()->pack( -side => 'top', - fill => 'x +' ); my $top_frame = $mw->Frame( -background => 'light green' )->pack( -side => 'to +p', -fill => 'x' ); my $left_frame = $mw->Frame( -background => 'white' )->pack( -side => 'top', -f +ill => 'x' ); $top_frame->Label( -text => "Copy generated *.[ch] files to host repository", )->pack( -side => 'top' ); $left_frame->Label( -text => "Enter host repository path:", -background => 'yellow' )->pack( -side => 'top', -fill => 'x' ); my $pathEntry = "path/$file"; my $entry = $left_frame->Entry( -textvariable => \$pathEntry, -width => 50)->pack( -side => 'top', -fill => 'x' ); my $buttons = $left_frame->Frame()->pack(-side => 'bottom', -fill=>'both', - +expand=> 0); my $executeButton= $buttons->Button( -text => "Continue", -command => sub{okbutton($mw, $pathEntry)}, -width => 20, -height => 2, -underline => 11 )->pack(-side => "left"); my $exitButton = $buttons->Button( -text => "Cancel", -command => sub { exit 1; }, -width => 20, -height => 2, -underline => 11 )->pack(-side => "right"); MainLoop; } } sub okbutton{ my ($mw, $pathEntry) = @_; print $pathEntry; if (!$pathEntry) { $mw->messageBox( -icon=>'error', -title=>'Error on Repository Path', -message=>"Error: Repository path should not be empty." ); return ""; } if ($pathEntry !~ /[1245679]/) { $mw->messageBox( -icon=>'error', -title=>'Error on Repository Path', -message=>"Error: Repository path can not include 3, 8 or +0." ); return ""; } $mw->destroy if Tk::Exists($mw); }

Note that I've altered the OK dialog file tests a little to make the code testable without needing a file system.

Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond

In reply to Re: perl tk get user input by GrandFather
in thread perl tk get user input by vinoth.ree

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-03-29 04:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found