Perl Tk questions

2001-08-31 Thread Thomas_P_Murnane
Is there a similar posting for beginners using Perl Tk -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

splitting a number to include commas

2001-08-29 Thread Thomas_P_Murnane
Is there an easy way or some format option that allows one to display an arbitrary number with commas: 12345678910 = 1,234,567,890 Or do I need to set up a looping structure to split the number and insert commas??? Thanks, Tom -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

perlTk, using fork

2001-08-29 Thread Thomas_P_Murnane
I am trying to run a script from a program created in perlTk. When I hit the RUN button, it runs this run_program function. It runs through the process fine and prints out the Process complete line and then gives me some weird messages: Process complete X Error of failed request: BadIDChoice (

Tk::FileDialog -FPat question

2001-08-15 Thread Thomas_P_Murnane
Is there a way to show upper and lower case pattern match for the -FPat option for a dialog box default pattern: sub browse_files { my $save_name = $b_file; $status->configure(-text=>"Browse directories"); if ($base ) { $b_file = $file_dialog->Show( -Path => $base, -FPat => "*

using a window while process is running in pTk

2001-08-08 Thread Thomas_P_Murnane
I created a program in ptk that basically takes a file in, splits it up and runs a process on each file, these can be run simultaneously or on after another. I'm using system( ) to kick off each process. The problem is that once I RUN this, I can't use the window until the processing is complete!!