Monitoring Files in a Directory

2004-01-22 Thread Bautista, Rodel D.(Digitel-GSM)
Hi to All, I'm trying to create a script that will monitor the addition of files in a particular directory. I've tried using the Win32::ChangeNotify module but I believe this does not include listings of files that were added/deleted to the directory. I've also tried using the Win32::AdvNotifybut

RE: Running my perl script in Linux

2003-11-12 Thread Bautista, Rodel D.(Digitel-GSM)
tart it so, example: $ ./myscript.pl regards Friedel Wittrock -Ursprüngliche Nachricht- Von: Bautista, Rodel D.(Digitel-GSM) [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 12. November 2003 07:47 An: PERL-WIN32-USERS Betreff: Running my perl script in Linux > Hi and Good Day To All! >

RE: Running my perl script in Linux

2003-11-12 Thread Bautista, Rodel D.(Digitel-GSM)
rom. -Original Message----- From: Bautista, Rodel D.(Digitel-GSM) [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 8:47 AM To: PERL-WIN32-USERS Subject: Running my perl script in Linux > Hi and Good Day To All! > > How can I run my perl scripts in Linux without appe

Running my perl script in Linux

2003-11-12 Thread Bautista, Rodel D.(Digitel-GSM)
> Hi and Good Day To All! > > How can I run my perl scripts in Linux without appending "perl" in the > command? > > for example: > > $ myscript.pl > > instead of > > $ perl myscript.pl > > thanks in advance. > > Rodel D. Bautista ___ Perl-Win32-Use

RE: Using Outlook in Win32::OLE

2003-06-22 Thread Bautista, Rodel D.\(Digitel-GSM\)
ot;$_>\t'", GetWindowText($_), "'\n"; SetForegroundWindow($_); PushButton "OK"; } sleep 3; my @windows1 = FindWindowLike(0, "^Enter Password",); for (@windows1) { print "$_>\t'", GetWindowText($_), "'\n"; SetF

RE: Using Outlook in Win32::OLE

2003-06-18 Thread Bautista, Rodel D.\(Digitel-GSM\)
); $message->{Subject} = $subject; $message->{Text} = $body; #$message->Attachments->Add('c:/audit/IN/mail_scripts/auto_mail.pl',1,0,'aut o_mail.pl'); $message->Update; $message->Send(0, 0, 0); # now it has been _queued_ undef $session; #end of script Can yo

RE: Using Outlook in Win32::OLE

2003-06-18 Thread Bautista, Rodel D.\(Digitel-GSM\)
Sir, in one of my googling sessions, I run into Win32::MAPI module. Will this help me in my automailer script? Where can I find and download the module? again, thank you very much. Rodel D. Bautista > -Original Message- > From: Bautista, Rodel D.(Digitel-GSM) [SMTP:[EMAIL PRO

RE: Using Outlook in Win32::OLE

2003-06-18 Thread Bautista, Rodel D.\(Digitel-GSM\)
} $msg->Update(); print "Sending mail...\n\n"; $msg->Send(0, 0, 0); print "Closing MAPI session...\n\n"; $session->Logoff(); exit 0; Is there a way for me to check if "mapisp32.exe" is running and if not run this program so that it will work fine. I'v