RE: How to launch Internet Explorer from perl script ?

2003-09-17 Thread Steven Manross
As said before Win32::InternetExplorer::Window can do this.. It's currently limited in functionality beyond navigating to a site and then navigating to a new site, maybe pressing the IE back button, and some other stuff, but it will get you familiar with some of the OLE Methods that Internet

Re: Win32::Internet SendRequest issue and SvPVbyte_nolen()

2003-09-17 Thread Sisyphus
[EMAIL PROTECTED] wrote: How do I declare a parameter to get SvPVbyte_nolen() instead of SvPV_nolen()? If no-one here picks up on this, try posting to the XS mailing list. See http://lists.perl.org . Maybe I'm missing the point, but since the SvPVbyte variants and SvPV variants both return a

RE: Reg Expression missing last char?

2003-09-17 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Capacio, Paula J wrote: I am using $1 and $2 to retain data from a matched regular expression. I expect $1 to contain the KEY ID and $2 to contain USER NAME, but $2 Pauls, If you put a slash between $1 and $2, you will find out that it is not doing what you think. You will find that $1

Re: Win32::Internet SendRequest issue and SvPVbyte_nolen()

2003-09-17 Thread kyfung
Well, I was surprised too. Took me half a day to suspect that part of the code, after first suspecting my own code, and then wininet. I will try that mailing list. Khun Yee On Thu, 18 Sep 2003 06:57:44 +1000, Sisyphus wrote: Message-Id: [EMAIL PROTECTED] From: Sisyphus [EMAIL PROTECTED]

Re: Reg Expression missing last char?

2003-09-17 Thread Capacio, Paula J
Thanks Bill, Rob and David! I didn't pickup on $1 getting too much of the match. I guess the lesson there is when printing the results, I should have delimited them with either words or characters, (like you did) then I would've noticed it. print Expression matched and retained: $1 and $2\n;