Dear monks I still working on my pet project due to some other projects i put this aside but again I took a look a new perpective i dont care how many file I need to edit to change the status of the banks or operations, so I did these little code
use Tk;
$mw->title("Bank status");
$mw->geometry("1024x764");
my $upperframe = $mw->frame()-pack(-fill => 'x');
Tk::MainLoop();
sub build_entry_bank{
my $statusbank = shift;
my $box_banamex = $upperframe->Entry(
-forecolor => 'blue',
-textvariable => \$statusbank,
-width => 20,
)->pack (-side => 'left',
-expand => 1);
return $box_banamex;
}
sub status_bank{
open (DATBANK, "banamex.txt") || die ("File Bank did not open!
+!!!");
my @bank_status = <DATBANK>;
close (DATBANK);
foreach my $status_bank(@bank_status){
chomp ($status_bank);
my $statusbank;
my $bank;
($bank,$statusbank) = split(/\|/,$status_bank);
}
}
now these code has some things missing, one of them how to make the data on the
sub status_bank being use on the
sub build_entry_bank and later how to make the data on
sub status_bank can by refresh every one minute with
repeat does anyone have any pointers or teach me it will be apreciatted
thanks
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.