RE: How to take focus?

2005-05-09 Thread Su, Yu (Eugene)
Thanks Bill for solving my problem. -Eugene -Original Message- From: $Bill Luebkert [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 7:16 PM To: Su, Yu (Eugene) Cc: Perl-Win32-Users@listserv.ActiveState.com Subject: Re: How to take focus? Su, Yu (Eugene) wrote: Hi all, I start

Re: Problem with DBI and Test::More

2005-05-09 Thread David Dick
Problem solved. The issue was to do with threading support in Test::Builder. Unfortunately, ActiveState perl 5.8 does not support the most recent Test::Builder. When i pasted in the most recent Test::Builder code, the issue described below vanished. Where are requests lodged for modules to

regex and map()

2005-05-09 Thread Arnold Wiegert
Im trying to sort out why the last line in the routine tokenizer() fails to strip off the trailing double quote for all but the last token. AFAICT, none of the tokens have any newlines - so I'm at a loss as to why it does not do what is expected - (this function is originally from the DICT

Win32::OLE question

2005-05-09 Thread Chris Cappelletti
I have a line of code that gives an error. This line of code: my $dll = new Win32::OLE(Artwork.db.api); Gives this error: Win32::OLE(0.1403) error 0x800401f3: Invalid class string at (eval 34) line 1 To me this indicates that the dll is not registered correctly with windows. That is not

RE: regex and map()

2005-05-09 Thread Wagner, David --- Senior Programmer Analyst --- WGO
[EMAIL PROTECTED] wrote: Im trying to sort out why the last line in the routine tokenizer() fails to strip off the trailing double quote for all but the last token. AFAICT, none of the tokens have any newlines - so I'm at a loss as to why it does not do what is expected - (this function is

perl remedy for CHM exploit

2005-05-09 Thread mark pryor
hello, I use WinXP/Win2k and I'm an avid user of CHM HtmlHelp files. I'm constantly downloading new ebooks made in this format (CHM). In order to protect against the new CHM exploit, I've made a Perl/InlineC method to grab the CHM central directory. The C library is from Matt Russotto and does

Re: Problem with DBI and Test::More

2005-05-09 Thread Sisyphus
- Original Message - From: David Dick [EMAIL PROTECTED] To: perl-win32-users@listserv.ActiveState.com Sent: Tuesday, May 10, 2005 7:38 AM Subject: Re: Problem with DBI and Test::More Where are requests lodged for modules to be updated? This particular module will be updated as a

Re: Win32::OLE question

2005-05-09 Thread Mike G
Have you tried searching the hard drive for another version of that dll? Dll's located in a local / same folder as the application normally do not need to be registered I believe. They also get invoked before dlls in system32 or other folder. Mike At 05:29 PM 5/9/2005, Chris Cappelletti wrote: