Re: Binary numbers and storing.

2002-06-05 Thread c. church
On another point, I forgot to mention: if you're using mixed data in your output file, you should (that is, -have to-, unless you're brave) *still* use pack and unpack(), especially if you're reading in mixed data. For example, if the input file contained the following elements: <8 ascii charact

Win32::API and GetOpenFileName

2002-06-05 Thread Dax T. Games
Anyone been able to import the GetOpenFileName API from comdlg32.dll. So I don't need to reinvent the wheel? I have been trying but have had no success. Thanks, Dax ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.

Re: HTML in E-mail

2002-06-05 Thread $Bill Luebkert
Ron Grabowski wrote: >>that somebody would actually get annoyed by the format of an e-mail. >> > > Sometimes when people use a client like Outlook, I'm unable to quote > their message in my response. I don't think changing the font color to a > pretty shade of blue or a non-standard Times New Ro

Re: How can we implement escape sequences in Perl ( Win 32 )

2002-06-05 Thread $Bill Luebkert
[EMAIL PROTECTED] wrote: > Dear All, > I would like to implement the escape sequences like ( if the value >is "Perl", after typing the P , if we press the Esc key it should >give all the options starting with the P ) . Can you please give me your directions.

RE: operator question

2002-06-05 Thread Morse, Richard E.
Charles Oppenheimer [mailto:[EMAIL PROTECTED]] wrote: > Hi folks. I have a question... I wanted to create a > sub procedure that takes an operator as an argument, > like so: > > &compare(1,"<",2); > > sub compare { > my ($value1,$operator,$value2) = @_; > > if ($value1 $operator $

operator question

2002-06-05 Thread Charles Oppenheimer
Hi folks. I have a question... I wanted to create a sub procedure that takes an operator as an argument, like so: &compare(1,"<",2); sub compare { my ($value1,$operator,$value2) = @_; if ($value1 $operator $value2) { print "statement is true!!\n"; } }

RE: PLEASE - can any one help on this?

2002-06-05 Thread Fernando Madruga
> I have written before on this and now I am in pressing need to know where I am going wrong with this code. > Can anyone give me any ideas? Unfortunately, the only "help" I can give you is tell you that you're not alone here... I've both Dave Roth's books and tried setting the privileges said

Re: Binary numbers and storing.

2002-06-05 Thread c. church
- Original Message - From: "Haimov, Eugene" <[EMAIL PROTECTED]> > Use "pack()" function on $currentdate, > then syswrite its result. -Original Message- > From: Michele Knight [mailto:[EMAIL PROTECTED]] > Thanks. I got the binary numbers correctly and when I try to write that >

RE: Adding/Multiplying binary numbers in Perl

2002-06-05 Thread Carl Jolley
On Fri, 31 May 2002, Haimov, Eugene wrote: > Use "pack()" function on $currentdate, > then syswrite its result. > > -Original Message- > From: Michele Knight [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 31, 2002 4:10 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: RE: Addi

Re: Problems with reg expression

2002-06-05 Thread Carl Jolley
On Mon, 3 Jun 2002, Walter Usyk wrote: > I'm having a problem with a regular expression and I hope that someone > can help me out with. > > I have the following: > > my $envLU > ="/vobs/spifftest/.@@/HDX.LU/lineups/.@@/HDX.LU/hdx.lu@@/main/LATEST"; > $envLU =~ s/^(.*\/)([^\/]+@@[^@@]+)$/$2/; >

Apache::MP3 help needed

2002-06-05 Thread Byron Wise
I have Apache::MP3 installed along with Apache::MP3::Sorted and Apache::MP3::Playlist. I'm not that knowledgable in Apache so I have a question about what to put in httpd.conf. I have already put in the MIME types, so thats done. At this point I have it working but I don't see the sorting capab

RE: Problems with reg expression

2002-06-05 Thread Fernando Madruga
Correction to my previous post: You'll probably need to preceed all @ in the $envLU variable with a \, that is: my $envLU ="/vobs/spifftest/.\@\@/HDX.LU/lineups/.\@\@/HDX.LU/hdx.lu\@\@/main/LATE ST"; Otherwise, just use single quotes instead of double ones like this: my $envLU ='/vobs/spifftest

RE: Problems with reg expression

2002-06-05 Thread Fernando Madruga
Just my guess: you'll probably need to replace all @ with \@ in the regexp... Sem mais assunto de momento, Fernando Madruga ASC:DSI -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Walter Usyk Sent: segunda-feira, 3 de Junho de 2002 19:01 To: [EMA

Re: HTML in E-mail

2002-06-05 Thread Ron Grabowski
> that somebody would actually get annoyed by the format of an e-mail. Sometimes when people use a client like Outlook, I'm unable to quote their message in my response. I don't think changing the font color to a pretty shade of blue or a non-standard Times New Roman font really adds anything. It

Re: How can we implement escape sequences in Perl ( Win 32 )

2002-06-05 Thread stormpunk
[EMAIL PROTECTED] wrote: >Dear All, > I would like to implement the escape sequences like ( if the value >is "Perl", after typing the P , if we press the Esc key it should >give all the options starting with the P ) . Can you please give me your directions. >

RE: Need help hiding text on a password

2002-06-05 Thread Warkentin, Brad
Tillman, James [mailto:[EMAIL PROTECTED]] wrote: > Is it just me, or does AS's repository seem to be showing some cracks > lately? DBI and Tk::JPEG installs that break, and now this. To be fair to ActiveState, this one is not their problem. As http://theoryx5.uwinnipeg.ca/mod_perl/cpan-search?

Re: How can we implement escape sequences in Perl ( Win 32 )

2002-06-05 Thread Ron Grabowski
> I would like to implement the escape sequences like ( if the value >is "Perl", I'm not sure what you are asking. perldoc URI::Escape ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState

RE: Need help hiding text on a password

2002-06-05 Thread Tillman, James
Is it just me, or does AS's repository seem to be showing some cracks lately? DBI and Tk::JPEG installs that break, and now this. jpt > -Original Message- > From: $Bill Luebkert [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 04, 2002 6:12 PM > To: Norris, Joseph > Cc: Perl Win32 Users

PerlIS or Perl.exe doubt

2002-06-05 Thread Fernando Freire Baez \[Medicare\)
> Hello, > > I am a doubt in PerlIS. I read that if you install ActivePerl the PerlIS > is installed with it. The only change that you have to do is save your > script with the extension ".plx". I test it with a hello.plx script and > its work but I don't know if I have to change anything else. I

Re: HTML in E-mail

2002-06-05 Thread Sean Ahern
At 10:35 05/06/2002 -0400, you wrote: >The key point in your comment being "imho". Notice I've switched back to >plain text because I do agree with you for List Services. What baffles me is >that somebody would actually get annoyed by the format of an e-mail. > >Trevor Maybe you might understand

PLEASE - can any one help on this?

2002-06-05 Thread Norris, Joseph
Group, I have written before on this and now I am in pressing need to know where I am going wrong with this code. Can anyone give me any ideas? The $Process contains path to perl script that has been formated to run as dos batch file. Thanks to all and sorry to be a pest I have the following