How to Invoke application for further action on it.

2001-10-21 Thread Abhra Debroy
Following is the diff between exec() and system() function exec()it replaces your currently running program with a different one. If you want to keep going use system() instead. Now My problem... I want to invoke an application and check the tittle of the default window of the application.

Re: how to match pattern at initial line

2001-10-21 Thread _brian_d_foy
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > if I have these lines: > --- > AAA BBB CCC > BBB CCC AAA > CCC AAA BBB > --- > > How to matching BBB at line 2 (BBB at the beginning of the line) > but not matching line 1 and 3. ' /^BBB/ ' is not work. use the m (for multiline) flag:

Re: HTML::Parser

2001-10-21 Thread _brian_d_foy
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Sunthari) wrote: > How do I use HTML::Parser to visit each urls.I need to > extract some lines in each pages. to extract URLs use HTML::SimpleLinkExtor :) -- brian d foy <[EMAIL PROTECTED]> - Perl services for hire CGI Meta FAQ - http://www.pe

Cookie worries...

2001-10-21 Thread Daniel Falkenberg
Hi all. Could some one have a look at the following code and tell me my the 3rd script can't read the cookie and allow me to access the page? Basically I am sure I am not doing anything wrong. I can see the cookie set in my browser through the users windows explorer. It looks the same as this.

Re: Interact with microsoft Excel

2001-10-21 Thread Kelvin Ng Chee Hoong
Yes , I heard about Active Perl . But I'm using unix perl . Can unix perl interact with microsoft excel ? nafiseh saberi wrote: >hi. >do you see " active perl " in windows...?? >__ >Best regards . Nafiseh Saberi >Iran

Re: Interact with microsoft Excel

2001-10-21 Thread nafiseh saberi
hi. do you see " active perl " in windows...?? __ Best regards . Nafiseh Saberi Iran . notes . Pray for Afghans people. Clothes , dont make the man. www.iraninfocenter

Re: SGML DTD Parser

2001-10-21 Thread RAHUL SHARMA
I want to parse a SGML DTD for validation purpose with simultaneoulsy parsing a SGML document. Thanks, Rahul. - Original Message - From: nafiseh saberi <[EMAIL PROTECTED]> To: RAHUL SHARMA <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, October 22, 2001 11:25 AM Subject: Re: SGML

Re: SGML DTD Parser

2001-10-21 Thread nafiseh saberi
hi. you need it for what purpose? __ Best regards . Nafiseh Saberi Iran . notes . Pray for Afghans people. Clothes , dont make the man. www.iraninfocenter.net ww

Interact with microsoft Excel

2001-10-21 Thread Kelvin Ng Chee Hoong
Hi ; I would like use perl to interact with microsoft excel - to query , update or delete data . Is it possible to do that ? Where can I get documentation on how perl interact with Microsoft excel ? Please advise -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

SGML DTD Parser

2001-10-21 Thread RAHUL SHARMA
Hi All, I want to parse a SGML DTD. Can anyone please give me any information regarding some utilities and tool. Thanks, Rahul.

Re: HTML::Parser

2001-10-21 Thread Sunthari
Hi, I have simple q for you. How do u use HTML::PARSER to extract some information. I have made a search using WWW::Search and received a list of URLs.Meaning, the following are extraction from my codes: my $search = new WWW::Search ('AltaVista'); $search->maximum_to_retrieve(10);

how to match pattern at initial line

2001-10-21 Thread basssang
if I have these lines: --- AAA BBB CCC BBB CCC AAA CCC AAA BBB --- How to matching BBB at line 2 (BBB at the beginning of the line) but not matching line 1 and 3. ' /^BBB/ ' is not work. regards, Bassang -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

HOWTO: Combine hash values

2001-10-21 Thread HANSON
Hi Gurus! This may be a simple question but so far I cannot find an answer. How can I combine hashs so that if both hashs have the same key but with different values, the values from both will get merged. I'm currently using: %hash1 = (%hash1, %hash2); Each time I lose the larger value. Tha

modules and namespaces

2001-10-21 Thread josh hoblitt
I have a group of functions that are dependant on several global variables (yes I know tightly coupled functions are bad). I would like to split these off into a module but as far as I know that require a) explicitly declaring the name space of the variable or b) passing them into the module nam

need some help...reading selecing items from a file

2001-10-21 Thread Tom Jones
Hi! I need some direction writing a perl script and would apprecitiate any help I could get. Okay, this is what I need to do... I've a text file that has kept a log of information. Here is some actual data from the file. -- - - - - - - - - - - - - - - - - - - - - Frame 1 - - - - - - -

Re: Call Center Software

2001-10-21 Thread tom poe
On Sunday 21 October 2001 10:30, Joe Echavarria wrote: > What i mean with a Call Center Software is a software > capable to make automatic calls using a database of > numbers and be able to send each call to a group of > representative. Hi: VOIP Linux Those keywords in Google brought up this

Re: Call Center Software

2001-10-21 Thread Joe Echavarria
What i mean with a Call Center Software is a software capable to make automatic calls using a database of numbers and be able to send each call to a group of representative. I mean, a database of phone number - name and a group of people waiting for the calls to arrive. The system send the call

Re: regexp question

2001-10-21 Thread Andrea Holstein
Birgit Kellner wrote: > > my $header = "Joe DoeThe book I wrote yesterday"; > my $title; > if ($header =~ /(^\S.+)()(\S.+$)/m) { $title = "$1: $3";} > print "$title\n"; > > Is there a shorter, simpler, more efficient way to do this? I still need > $header later on as it is. > I try to go anothe

Event Handling system

2001-10-21 Thread Abhra Debroy
Hi I want some guidance on event handling in perl. I want to perform an action on mouse click event or key button press event. Like a dialog box or message box should popup when I click left or right mouse button. I tried to use win32::Event Module . But I did not understand how to use it. Is it t