Win32::ActAcc : How to print event details into Text file

2002-02-08 Thread Abhra Debroy
Hi All In the below script we can print event details into console window by debug_spin(1). Now how can I print those event details ina text file ? __ use strict; use Win32::OLE; use Win32::ActAcc; sub main { print "\n"."aa

PPM/html help

2002-02-08 Thread Jeff Urlwin
Jan, Thank you very much. Also, I've been having trouble getting html generated from ODBC.pm's POD section for my module. Is there anything special I should do? Thanks, Jeff > -Original Message- > From: Jan Dubois [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 08, 2002 9:24 PM >

Re: PPM repository status

2002-02-08 Thread Jan Dubois
On Fri, 8 Feb 2002 20:50:30 -0500, "Jeff Urlwin" <[EMAIL PROTECTED]> wrote: Hi Jeff, >Is this for all modules or just Tk? DBD::ODBC is a month out of date. It should be all the modules. I checked the build logs, and it looks like the system run out of disk space a couple of times during the b

Problem with Installation of DBD-ODBC module with Indigoperl

2002-02-08 Thread Investor
I am using IndigoPerl and attempted to install DBD-ODBC module with the dpm option of IndigoPerl. It failed and I don't see why? I installed nmmaker.exe like the docs said. I downloaded DBD-ODBC.ppd from activesate and tried a local installation ...it failed. Then I tried a URL installation a

RE: Numeranomalies

2002-02-08 Thread Joe Schell
> -Original Message- > Behalf Of Sisyphus > > > > - Original Message - > From: "Joe Schell" <[EMAIL PROTECTED]> > > > > Ok - so it seems that there are 3 ingredients that must be present for > the > > > problem to arise: > > > 1) Big numbers - beyond 2^31-1. > > > 2) The '%' ope

Re: Determine what a subroutine wants to return

2002-02-08 Thread Chuck . Hirstius
>On Thu, 7 Feb 2002 [EMAIL PROTECTED] wrote: > >> >> I think I have phrased my question wrong, mostly because I was confused >> about what was causing it. eval is not the issue, so taking eval out of >> the picture here is what I'd like to know... >> >> $self->{_result} = $some_obj->some_method

Re:Sharing Variables

2002-02-08 Thread Ashish . Tiwari
Remove the my from env.pl. It will work Ashish Tiwari Integrated Decisions and Systems Reply Separator Subject:Sharing Variables Author: [EMAIL PROTECTED] Date: 2/8/02 10:45 AM Question: How can I share variables between Perl scripts...? Environ

Win32 application instalation within Perl invoke

2002-02-08 Thread Fernando Freire Baez [Medicare)
Hello, I have a localserver (PWS) running in my computer with the domain "localhost". I want to know if I have a simple webpage that have a link pointing to a Perl script and I want when a user click the link to run an install a program that is in the C:\ drive. Is like execute the clasic envoke:

DIF (Data Interchange Format) module?

2002-02-08 Thread Adam Frielink
I looked at cpan for a module for the DIF file format(http://search.cpan.org/search?mode=module&query=DIF) and didn't find one, does anyone know if something exists that can be used? Could DBD::AnyData be used for this if I found a filter for it? Thanks for any insight... Adam ___

Re: Phantom process?

2002-02-08 Thread Jeffrey
--- Jan Dubois <[EMAIL PROTECTED]> wrote: > As to the Access object itself not going away, I > have no idea. Does it go > away when you close the application? You may have > to go spelunking in the > object model description if there is anything else > needed to terminate > Access. I haven't us

OT: Re: lost files

2002-02-08 Thread Simon Oliver
Carl Jolley wrote: > > > Any body have any ideals? > > I kinda like Nelson Mandela. > That would be an idol! -- Simon Oliver ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Sharing Variables

2002-02-08 Thread david . b . deline
Question: How can I share variables between Perl scripts...? Environment: Windows NT Supporting Information: In the Unix world I've been able to accomplish this by using the 'our' variable declaration and then adding a 'require' line to other scripts along with a 'use vars' line. But in th

Re: excel ole: how to set print area and page set up

2002-02-08 Thread Jeffrey
>From what I can tell, the syntax is fine. I've had similar problems setting the Page setups through Excel, and they're still unresolved. I am assuming that $ExcelSheet is a Worksheet object, yes? --- Marco Centemeri <[EMAIL PROTECTED]> wrote: > Hello All, > I did a script which trough win32::o

Re: Cron Job

2002-02-08 Thread Carl Jolley
On Fri, 8 Feb 2002, karthikeyan wrote: > Hi, > > How do i set cron job on Red Hat Linux. > > Looking forward for yours response. > > You guys are so sweet. > First you find a list that deals with questions related to Red Hat Linux. Then you join that list. Then you post your question. ***

Re: Determine what a subroutine wants to return

2002-02-08 Thread Carl Jolley
On Thu, 7 Feb 2002 [EMAIL PROTECTED] wrote: > > I think I have phrased my question wrong, mostly because I was confused > about what was causing it. eval is not the issue, so taking eval out of > the picture here is what I'd like to know... > > $self->{_result} = $some_obj->some_method > > assum

RE: Phantom process?

2002-02-08 Thread Moulder, Glen
> That is definitely incorrect syntax. You are missing the > "sub" keyword: > >$obj = Win32::OLE->new('Access.Application', sub {$_[0]->Quit();}); > > But for this simple case it is much easier to write: > >$obj = Win32::OLE->new('Access.Application', 'Quit'); > > > As to the Acces

Re: lost files

2002-02-08 Thread Carl Jolley
> Hi, > I have a perl program I put into schedule in window 2000 terminal server. as > follows > > C:\Perl\bin\perl.exe D:\Scada\Bin\MyPerl.pl >%LOG_L%\OutPut.txt 2>&1 > > The program works fine under the scheduler but the STDOUT or STDERR works > only when I type this command at the command prom

Re: Phantom process?

2002-02-08 Thread Jan Dubois
On Fri, 08 Feb 2002 08:47:57 -0500, "Moulder, Glen" <[EMAIL PROTECTED]> wrote: > >Hi Steve, > >I hadn't tried these, but when I did > >> $obj = Win32::OLE->new('Access.Application',{$_[0]->Quit();}) > >I got syntax errors, like this: > >syntax error at somescript.pl line nnn, near ";}" That is d

RE: __DATA__

2002-02-08 Thread Tillman, James
> Maybe, maybe not. > > See Inline::File, Inline::Files, and Inline::Files::Virtual, by Damian > Conway. > > CPAN testers claim it fails on Windows, though, but maybe that isn't > incurable. > Wow. Damian rocks! He's the best employee I've ever had ;-) jpt _

RE: Phantom process?

2002-02-08 Thread Moulder, Glen
Hi Steve, I hadn't tried these, but when I did > $obj = Win32::OLE->new('Access.Application',{$_[0]->Quit();}) I got syntax errors, like this: syntax error at somescript.pl line nnn, near ";}" The same error appeared whether I used either the Quit or the Exit methods. This is part of a muc

Re: Numeranomalies

2002-02-08 Thread Sisyphus
- Original Message - From: "Joe Schell" <[EMAIL PROTECTED]> > > Ok - so it seems that there are 3 ingredients that must be present for the > > problem to arise: > > 1) Big numbers - beyond 2^31-1. > > 2) The '%' operator. > > 3) A 'bare number' (for want of a better term). > > > > If an