Re: Capitalize every 1st character of all the words in a string

2005-02-20 Thread Trevor Joerges [SendMIME Software]
Hi again, I would like capitalize every 1st character of all the words in a string. So something like please help me would become Please Help Me. Recently people on this list were helpful enough to tell me about a function called substr. I used this to successfully remove x amount of characters

Re: :Oracle copy from one PC to another

2005-02-04 Thread Trevor Joerges [SendMIME Software]
I hope and believe this is not a hard question, merely procedural. . . It seems Tim Bunce's Oracle DBD repository is no longer functional; does anyone know the procedure for copying a module install from one machine to another? So far I've tried copying the .pm's that seemed to be relevant (and,

Re: ExtractIcon, then write it to file

2004-12-18 Thread Trevor Joerges [SendMIME Software]
how do i extract an icon from an exe file, then write it to a file. CPAN is your friend. Win32::Exe has what you need unless you must create this yourself. I bet if you look at the module source you'll see what your looking. HTH, Trevor J. Joerges SendMIME Software www.sendmime.com

Re: extract jpg info

2004-12-16 Thread Trevor Joerges [SendMIME Software]
That information I believe is called Exif info. A quick search on CPAN returned: Image-ExifTool You might want to check that module out. HTH, --Trevor Joerges - Original Message - From: Hon Shi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 16, 2004 08:40 Subject:

Re: Crypt::Rijndael

2004-11-22 Thread Trevor Joerges [SendMIME Software]
Yesterday, for my Windoze machine, I installed ActiveState Perl 5.8.5. Everything went fine. I downloaded several packages, using ppm 3.0; went fine too. But when I tried to get Crypt::Rijndael and Crypt::Blowfish, both packages are gone! Much to my dismay, I might add. Especially since I see

Re: Systemtray-Icon controlled by Perl?

2004-10-08 Thread Trevor Joerges [SendMIME Software]
Have a look at: Package Win32::GUI::NotifyIcon -- - Stuart Arnold MDT Software Alpharetta, GA W: 678.297.1027 Email(W): [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent:

Re: running out of memory...

2004-07-06 Thread Trevor Joerges [SendMIME Software]
I posted earlier about this problem and clearing my arrays before each use makes no difference...the issue is lexical scoping, or keeping variables/arrays local - if they are used in other subroutines (and not declared local or with my), they are global, your memory increases, even if you clear

Re: perl to monitor other perl apps...

2004-07-03 Thread Trevor Joerges [SendMIME Software]
You could write a wrapper for the application so that when it launched it logs the information you want to a DB, tracks and reports the performance of the launched application using Win32::Perflib and reports process closure to the DB as well. I've done something similar to this before for

Re: Lost messages

2004-06-19 Thread Trevor Joerges [SendMIME Software]
I'd like to get the messages from archive or ask the list server to resend them but I don't know how to do it. Could you tell me how to do it, please? You can view the mailing list archive online here: http://aspn.activestate.com/ASPN/Mail/Browse/Plain/perl-win32-users/ Not sure about command

Re: Perl and Net::SNMP

2004-06-11 Thread Trevor Joerges [SendMIME Software]
Change Net::SMTP to libnet - Original Message - From: Jeremy Junginger To: [EMAIL PROTECTED] Sent: Friday, June 11, 2004 10:13 Subject: Perl and Net::SNMP Hey guys, How do you get the Net::SNMP module installed on a windows machine running PERL 5.8+? I'm trying the following: perl

Re: perlscript performance in ASP

2003-10-20 Thread Trevor Joerges [SendMIME Software]
ActiveState makes PerlEx that is supposed to embed the Perl interpreter into IIS much like Apache and mod_perl. It allows you to take advantage of things like persistent data connections and embedding Perl code directly into HTML much like say PHP. Then of course there is always moving to Apache

Re: Win32-Daemon module installation problem!

2003-10-16 Thread Trevor Joerges [SendMIME Software]
). I tried what you said and I get the same error. Here it is Error: no suitable installation target found for package Win32-Daemon. Any other ideeas ? Thanks, Nicu -Ursprüngliche Nachricht-Von: Trevor Joerges [SendMIME Software] [mailto:[EMAIL

Re: How do on create a Certs?

2003-10-06 Thread Trevor Joerges [SendMIME Software]
You will need OpenSSL to do that - http://www.openssl.org. I'm not aware of any modules for creating certs using OpenSSL but there are some existing Perl scripts that come with OpenSSL which use the OpenSSL binary to create self-signed certificate authorities which will allow you to create

Re: Parsing Excel file

2003-09-23 Thread Trevor Joerges [SendMIME Software]
I would just save it from Excel using something other than a comma delimiter, because your NOTE field has commas in the data, and just split each line on the delimiter you choose like a pipe perhaps "|". You will of course have to do some other regex magic to parse the NOTE fields into

Re: Parsing Excel file

2003-09-23 Thread Trevor Joerges [SendMIME Software]
to save Excel file using "|" instead of comma? I'm looking for it in Excel Help but no luck so far. Greg - Original Message - From: Trevor Joerges [SendMIME Software] To: Greg Wardawy ; Perl-Win32-Users (E-mail) Sent: Tuesday, September 23,

Re: Win32::Security and Permissions Inheritance

2003-09-20 Thread Trevor Joerges [SendMIME Software]
You might want to look at Win32::Perms from Dave Roth for this. www.roth.net Hope this helps. Trevor Joerges - Original Message - From: Graham Ford [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 19, 2003 3:49 PM Subject: Win32::Security and Permissions Inheritance I

Re: newbie hlelp!

2003-09-15 Thread Trevor Joerges [SendMIME Software]
Try perldoc -f -M. my $modtime = -M file; # will get you the last modified time in days. Hope this help you. Trevor Joerges - Original Message - From: alex p [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 3:41 PM Subject: newbie hlelp! Hello all, I am

Re: Is there something like $SIG{__PRINT__} = sub {

2003-09-11 Thread Trevor Joerges [SendMIME Software]
You can trap any of the Perl signals and send then you a custom routine like: # trap warning and die messages and exit $SIG{'__WARN__'} = \trap; $SIG{'__DIE__'} = \trap; sub trap { my ($message) = @_; print \nERROR: $message\n; exit (1); } Trevor Joerges - Original Message - From:

Re: Exchange and Net::SMTP::Multipart

2003-09-08 Thread Trevor Joerges [SendMIME Software]
Title: Exchange and Net::SMTP::Multipart For better control over the MIME body parts of a multipart SMTP message trying using MIME:::Entity which is part of the MIME-Tools bundle. Trevor Joerges - Original Message - From: Vincent Ribeaud To: [EMAIL PROTECTED]

Re: DBD::Pg

2003-08-20 Thread Trevor Joerges [SendMIME Software]
http://search.cpan.org/search?query=DBD-PGmode=module Hope this helps. Trevor Joerges SendMIME Software www.sendmime.com - Original Message - From: Ivan Wills [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 10:54 PM Subject: DBD::Pg Hi Does any one know where

Re: system ('time', $time) driving me nuts

2003-08-14 Thread Trevor Joerges [SendMIME Software]
What are you trying to do? Set the system time or get the system time? Trevor Joerges SendMIME Software www.sendmime.com - Original Message - From: Michael D. Smith [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 10, 2003 10:55 AM Subject: system ('time', $time) driving me

Re: Extracting source from exe's

2003-08-11 Thread Trevor Joerges [SendMIME Software]
I think if you ask the PDK mailing list ([EMAIL PROTECTED]), specifically Jan Dubois, he may do it for you if you can prove that the EXE is really produced by you (i.e. name every file in the exe that was compiled probably along with some specific information that only someone who had the original

Re: error of use lib qw(...) ;?

2003-08-10 Thread Trevor Joerges [SendMIME Software]
Is that a typo is there really supposed to be 2 e in apachee-lib? In your Directory directive in your http.conf file it only has one e. Trevor Joerges SendMIME Software www.sendmime.com - Original Message - From: Xu, Qiang (XSSC SGP) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: NET:SMTP Subject Method

2003-08-01 Thread Trevor Joerges [SendMIME Software]
of the other mail modules to use with Net::SMTP like Mail::Sender, Mail::Mailer, MIME::Lite, and MIME::Entity (part of MIME-Tools bundle). Hope this helps. Trevor Joerges SendMIME Software www.sendmime.com - Original Message - From: Leon [EMAIL PROTECTED] To: win32 [EMAIL PROTECTED] Cc: Yahoo

Re: Help with regex

2003-08-01 Thread Trevor Joerges [SendMIME Software]
What are you trying to get the Epoch time from a date? If so you could also use the Date::Calc modules Date_to_Time function. Hope this helps. Trevor Joerges SendMIME Software www.sendmime.com - Original Message - From: Will of Thornhenge [EMAIL PROTECTED] To: perl-win32-users Mailing

Re: Problem reading directory in perl via IIS

2003-07-21 Thread Trevor Joerges [SendMIME Software]
It is most likely due to the defaults rights assigned to the account that IIS runs as (IUSR_HOSTNAME usually). You would have to give read access on the directory to this account in order to accomplish this but be careful as you could obviously open a vulnerability. Trevor Joerges - Original

Re: PERLAPP.EXE Compile error

2003-06-27 Thread Trevor Joerges \[SendMIME Software\]
reasoning goes for the Mac modules which are there for portability to Macintosh systems but not required for your Win32 exe to function. Do you get any errors when you run the EXE? Trevor Joerges SendMIME Software www.sendmime.com - Original Message - From: Matthew_Johnson/MO/[EMAIL

Re: SSL Daemon on Win32

2003-06-10 Thread Trevor Joerges \[SendMIME Software\]
. Net::SSL Net::SSLeay Net::Daemon::SSL IO::Socket::SSL Hope this helps. P.S. My spell checker tried to change SSLeay to Sleazy :-) Trevor Joerges SendMIME Software www.sendmime.com [EMAIL PROTECTED] - Original Message - From: Floyd Russell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: SSL Daemon on Win32

2003-06-10 Thread Trevor Joerges \[SendMIME Software\]
://ftp.microsoft.com/softlib/mslfiles/NMAKE15.EXE). Trevor Joerges SendMIME Software www.sendmime.com [EMAIL PROTECTED] - Original Message - From: Floyd Russell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 2:15 PM Subject: RE: SSL Daemon on Win32 So how do I easily acquire

Re: SSL Daemon on Win32

2003-06-10 Thread Trevor Joerges \[SendMIME Software\]
'0x460' Stop. | -Original Message- | From: [EMAIL PROTECTED] | [mailto:[EMAIL PROTECTED] Behalf Of | Trevor Joerges [SendMIME Software] | Sent: Tuesday, June 10, 2003 1:33 PM | To: Floyd Russell; [EMAIL PROTECTED] | Subject: Re: SSL Daemon on Win32 | | | Well you can always use

Re: easy newbie REGEX

2003-06-10 Thread Trevor Joerges \[SendMIME Software\]
You could do something like this: my $answer; do { print Question: ; chomp ( $answer = STDIN ); print Answer: $answer\n; } while $answer !~ /^MDS[0-9]/; Trevor Joerges SendMIME Software www.sendmime.com [EMAIL PROTECTED] - Original Message - From: alex p [EMAIL PROTECTED] To: [EMAIL

Re: SSL Daemon on Win32

2003-06-10 Thread Trevor Joerges \[SendMIME Software\]
10, 2003 3:23 PM Subject: RE: SSL Daemon on Win32 I'm doing this through CPAN completely. Do I have to go out of CPAN do something and then try again? | -Original Message- | From: [EMAIL PROTECTED] | [mailto:[EMAIL PROTECTED] Behalf Of | Trevor Joerges [SendMIME Software] | Sent

Re: Problems in perl programming about sending email

2003-03-31 Thread Trevor Joerges \[SendMIME Software\]
and $myserver should be your local hostname that is sending the e-mail. Hope this helps. Trevor Joerges SendMIME Software [EMAIL PROTECTED] - Original Message - From: Glenn Linderman [EMAIL PROTECTED] To: minglo [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, March 30