tk::table interface for real time check

2002-05-05 Thread stefano
Hi to all, I have to do a software with tk::table interface for real time check, the problem is that the tk::tableto every call it occupies new memory RAM. After some time the software crash.This example is generic, but display in simple mode the system. Any help is appreciated, in order

Problem Using Makefile.PL to Install CPAN Modules

2002-05-05 Thread James E Keenan
I am having trouble running 'Makefile.PL' when attempting to install CPAN modules. I am running perl 5.6.0, Active State build 613, on Windows98. Today I have attempted to install 2 modules: Set::Scalar and Algorithm::Diff. In each case I have encountered the same error. Following Perl

How should I restart my script?

2002-05-05 Thread Ken Swift
Hello everyone, I have a very general question that I can't seem to find an answer to. I have a perl script that monitors network servers using WMI. I have the actual checks in a flat config files and when I startup the perl script it reads in each line of the config file and and puts each

Regular Expression

2002-05-05 Thread steve silvers
I have seen a couple of good regular expression questions asked and answered. Now I have a question. This is probably easy but i'm stuck on it. All I want to do is take. my @numbers = (01,02,03,03,05,08,09,12,14,13,11,18,17,12,15,16,15,16,12,13,14,16,17,22,23,24,25,25,23,22,21,20); so

RE: Regular Expression

2002-05-05 Thread Toby Stuart
Hi Steve, This may not be the most eficient way, but it seems to work. Someone will undoubtedly offer another (probably better) way to do it. hth Toby snip my @numbers = qw(01 02 03 03 05 08 09 12 14 13 11 18 17 12 15 16 15 16 12 13 14 16 17 22 23 24 25 25 23 22 21 20); my %counts;

RE: Regular Expression

2002-05-05 Thread Mike G
At 05:59 PM 05/05/2002, you wrote: Hi Steve, This may not be the most eficient way, but it seems to work. Someone will undoubtedly offer another (probably better) way to do it. This is good, but more than necessary... Toby snip my @numbers = qw(01 02 03 03 05 08 09 12 14 13 11 18 17 12 15 16