RE: Excel to html format

2002-11-25 Thread Carl Campbell
IIRC, MS Excel 97 cannot create or save files in HTML format. This was a feature that Microsoft introduced, in Office 2K. Then again, I could be wrong...check your version of Excel and see if it can create HTML files. Also, It is a good programming practice to make use of the global mnemonic, in

[Announce] Math::GMP ppm

2002-11-25 Thread Sisyphus
Hi, I've put ppm's for Math::GMP-2.03 for perl 5.8.0, 5.6.1 and 5.6.0 at: http://robgil.hypermart.net/w32perl/math_gmp.html . Built with mingw32-perl and dmake, but seems to work just as well with ActiveState's perl. I haven't set up a repository - it will be necessary to download the tar.gz, do

Re: Justifying text in a Tk label?

2002-11-25 Thread Jack
- Original Message - From: "Beckett Richard-qswi266" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 25, 2002 8:23 AM Subject: Justifying text in a Tk label? > Anyone know how to justify the text within a Tk label? > > I tried many combinations, like: > > my $label = $f

SendKey NumKey with GuiTest WAS: Automating a user

2002-11-25 Thread Allegakoen, Justin Devanandan
Hi, With reference to the below, I mentioned that I had more questions than answers - well here's 2 of them:- I can sort of get what I want using Win32::GuiTest But this VAX program requires me to send the Num key numbers on the far right of the key board not the ones above QWERTY - how can I do

Re: thread limit in fork?

2002-11-25 Thread Jan Dubois
On Mon, 25 Nov 2002 15:09:26 -0800 (PST), prefab <[EMAIL PROTECTED]> wrote: >Does anyone know where this limit comes from and if it >is possible to configure a higher number of threads? Yes, there is a limit of 64 *concurrent* threads in Perl on Windows. The limit comes from using the WaitForMul

RE: Excel to html format

2002-11-25 Thread Toby Stuart
> -Original Message- > From: Ricci, Mark [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 26, 2002 8:13 AM > To: [EMAIL PROTECTED] > Subject: Excel to html format > > > Hello, > I have an Excel spreadsheet that a person saves to a network drive daily. I want to automate the

Re: Subject Line

2002-11-25 Thread Jack
- Original Message - From: "Harald Wopenka" <[EMAIL PROTECTED]> To: "Win32-Users Perl" <[EMAIL PROTECTED]> Sent: Monday, November 25, 2002 3:15 AM Subject: Re: Subject Line [snip] > And we could start such a useless discussion like "linux is better than > windows and vice versa" ;) "Linu

Re: thread limit in fork?

2002-11-25 Thread Scott Carr
Which OS are you using? -- Scott Carr Documentation Maintainer http://documentation.openoffice.org OpenOffice.org Quoting prefab <[EMAIL PROTECTED]>: > hello, > > there appears to be a limit of 64 processes that can > be forked on win32. The following code: > > foreach $i (1..1000) { > if

thread limit in fork?

2002-11-25 Thread prefab
hello, there appears to be a limit of 64 processes that can be forked on win32. The following code: foreach $i (1..1000) { if (!defined ($pid = fork())) { print "current child process : ".$i."\n"; die "cannot fork: $!"; } elsif ($pid== 0) { # child sleep(10); e

Socket initialization failure timeout on Win32

2002-11-25 Thread Dan Oppenheim
Hi, While trying to use IO::Socket to connect to another server (using the code below), our script sometimes ends up hanging for up to 189 seconds before continuing. Adding "Timeout => 2," has no effect on this, and using IO::Select does not help either because the socket does not yet seem to be c

Excel to html format

2002-11-25 Thread Ricci, Mark
Title: Excel to html format Hello,     I have an Excel spreadsheet that a person saves to a network drive daily.  I want to automate the task of opening the file and saving it as html (the person can't do it themselves, their not technical enough! ).  I know the OLE modules can let you m

RE: Mail::Sendmail not working for me anymore

2002-11-25 Thread Stovall, Adrian M.
Comments inline... ... $mail{Date} = Mail::Sendmail::time_to_date( time() ); sendmail(%mail) or die I am dead; # yields these results: ###

RE: using WMI to create process remotely.

2002-11-25 Thread Hari Bhaskaran
Is there a problem with this list or are you sending your question every 15 minutes? > -Original Message- > From: Sindhi, Abdul [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 25, 2002 11:35 AM > To: '[EMAIL PROTECTED]' > Subject: using WMI to create process remotely. > > > Hi, >

Re: Substitution

2002-11-25 Thread Carl Jolley
On Sun, 24 Nov 2002, Erich C. Beyrent wrote: > Hey everyone, > > I have a web form that displays a string of data from an ASCII file, split > by the colon into seperate fields on the browser. I can then edit the > values of these fields and resend the modified data into the file. > > However, I

Mail::Sendmail not working for me anymore

2002-11-25 Thread Ahlsen-Girard Edward F Contr ESC/ACU OL1
Title: Mail::Sendmail not working for me anymore I have been using Mail::Sendmail with great results until recently.  Making things odd is that a Sendmail-using year-plus old compiled EXE (using perlapp) still works.  Making things really infuriating is that while I was away for a year the sou

PERL Debugging

2002-11-25 Thread Ashish Tiwari
Hello List, I am debugging PERL code on NT. The script forks a child, and both parent and child do something. While debugging The debugger randomly toggles between the two processes. The problem Is when the child process ends, I am asked to quit the child session of the debugger. At times I am

Re: Justifying text in a Tk label?

2002-11-25 Thread Lee Goddard
At 16:23 25/11/2002, Beckett Richard-qswi266 wrote: Anyone know how to justify the text within a Tk label? I tried many combinations, like: my $label = $frame->Label (-text => "Hostname :", -relief => "raised", -borderwidth => "2", -width => "25", -justify => "left") -> pack (-side => "top", -a

using WMI to create process remotely.

2002-11-25 Thread Sindhi, Abdul
Hi, I was wondering if there was a way to create a process on a remote machine using WMI in perl. I am trying to figure out a secure-windows way to launch perl scripts on remote machines, and collect their return/error codes when they are done executing. Any help would be greatly appreciated. T

using WMI to create process.

2002-11-25 Thread Sindhi, Abdul
Hi, I was wondering if there was a way to create a process on a remote machine using WMI in perl. I am trying to figure out a secure-windows way to launch perl scripts on remote machines, and collect their return/error codes when they are done executing. Any help would be greatly appreciated. T

using WMI to create process.

2002-11-25 Thread Sindhi, Abdul
Hi, I was wondering if there was a way to create a process on a remote machine using WMI in perl. I am trying to figure out a secure-windows way to launch perl scripts on remote machines, and collect their return/error codes when they are done executing. Any help would be greatly appreciated. T

RE: Perl & SunOS/Solaris install

2002-11-25 Thread Atkinson, Paul \(CRTRES\)
Title: RE: Perl & SunOS/Solaris install From: John Drabinowicz [mailto:[EMAIL PROTECTED]] > I need to get perl on a SunOS box, where can I get this version Try http://www.sunfreeware.com/ Or http://sunfreeware.secsup.org/ Cheers, Paul.