I was fooling around to try to find a workable solution.

Because I was trying a variety of things, the solution below is rather untidy (stuff left over from things that didn't work)

However, I am running short of time, so I simply give you something that might be what you are looking for.

Main points:
1. Use $mainWindow->update() within loops. It keeps Tk alive
2. Launching process using after allows you to continue processing within your current process (kinda like thread?)
3. If you are using a system command that blocks your process, you should look at fileevent and pipes.

Good luck.

use strict; use warnings; use Tk; my $excelflag; my $mainWindow = MainWindow->new; my $textBox = $mainWindow->Scrolled("Text", -width=>80, -height=>7, -scrollbars=>"ose", -wrap=>"word")->pack(); #my $goBut = $mainWindow->Button(-foreground=>"blue", -text=>"Click", # -command=>sub { $thr = threads->new(\&excecute) } +)->pack(); my $goBut = $mainWindow->Button(-foreground=>"blue", -text=>"Click", -command=>sub { excecute() } )->pack(); my $stopBut = $mainWindow->Button(-foreground=>"red", -text=>"Stop", -command=>sub{ $excelflag = 1 })->pack(); my $exitBut = $mainWindow->Button(-foreground=>"red", -text=>"Exit", -command=>sub{ $excelflag = 1; exit })->pack(); MainLoop; sub excecute { $goBut->configure(-state=>"disabled"); $textBox->configure(-state=>"normal"); $excelflag = 0; $textBox->after(2,\&excel); open(FILE,"C:/file.txt") or die "Can't open file.\n"; while(<FILE>) { my $message = $_; $textBox->insert('end', $message); } close(FILE); $textBox->configure(-state=>"disabled"); $textBox->see('end'); return; } sub excel { use Win32::OLE; use Win32::OLE::Const 'Microsoft Excel'; my ($Excel,$Workbook,$fileOutput,$CurrentSheet,$Range); $fileOutput = "C:/test.xls"; $Excel = Win32::OLE->new('Excel.Application', 'Quit') || die "Can't create Excel object. \n"; $Excel->{'Visible'} = 1; #0 is hidden, 1 i +s visible $Excel->{DisplayAlerts} = 0; #0 is hide alerts + $Excel->{SheetsInNewWorkbook} = 1; $Workbook = $Excel->Workbooks->Add(); $Workbook->SaveAs($fileOutput) or die "Can't save Excel.\n"; $CurrentSheet = $Workbook->Worksheets(1); $CurrentSheet->Select; for (my $i=1; $i<=6500; $i++) { $Range = $CurrentSheet->Range("A$i"); $Range->{Value} = $i; sleep(0.01); $mainWindow->update(); last if $excelflag; } $Workbook->Save(); $Workbook->Close(); $Excel->Quit(); Win32::OLE->FreeUnusedLibraries(); $goBut->configure(-state=>"normal"); return; }
Disclaimer: this could be a lot cleaner - but want to go home.

Sandy


In reply to Re: Tk & threads & Excel OLE?? by Sandy
in thread Tk & threads & Excel OLE?? by Slickuser

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.