Fork-Exec on Win98 Using ActivePerl-5.6.1.631

2002-01-23 Thread Dale & Lora Marshall
I have a Perl-Tk program that I'm trying to get fork-exec working in. The code snippet is: sub create_show() { unless (fork) { exec ('create_show.exe $showdate') or print STDERR "couldn't exec create_show.exe: $!"; } } The snippet is called from a pushputton. What I want to ha

Re: html/perl

2002-01-23 Thread Cameron Dorey
Danny Wong wrote: > > Hi, > I've created an HTML page with links. The links are to perl script files. The > perl script on the server side displays html and excutes certain commands. > Whenever I click on the link, it always ask me if i want to save the file or open > it? Can anyone tell

html/perl

2002-01-23 Thread Danny Wong
Hi, I've created an HTML page with links. The links are to perl script files. The perl script on the server side displays html and excutes certain commands. Whenever I click on the link, it always ask me if i want to save the file or open it? Can anyone tell me the syntax i need to write i

RE: Slightly OT: A faster way?

2002-01-23 Thread Thiebaud Richard
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 23, 2002 5:39 PM > To: [EMAIL PROTECTED] > Subject: Slightly OT: A faster way? > > > Hi everyone, > > I am writing some modules to parse and unpack ISO 8211 > encoded files (many > GB

perl2exe -- my bad

2002-01-23 Thread Vitaly Kupisk
Thanks all, I figured it out -- there are 2 https modules, LWP::Protocol::https and URI::https and I wasn't "use"ing the URI one. Vitaly ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-us

Slightly OT: A faster way?

2002-01-23 Thread shurst
Hi everyone, I am writing some modules to parse and unpack ISO 8211 encoded files (many GB of them), and am having a hard time coming up with an efficient way to extract some of the binary data. As an example, one type of file includes records consisting of 32 bit big-endian floats. Somethi

Sending text to other windows with Win32::GUI

2002-01-23 Thread Scott Campbell
I have created a window with the following code:   $window = new Win32::GUI::Window(  -name    => 'MY_Window', -text    => 'TEST', -

RE: Net: :SNMP problem with community string

2002-01-23 Thread Price, Steve A
> return 0; > > } > > > > my $message=shift || "TIME $datetime"; > > #what do we want the trap to say > > my $value = $session->trap( > > -varbindlist => [$oid, OCTET_STRING, "$message"] > >