RE: perl exe generation!!!

2006-10-16 Thread Toby Stuart
Or you can use the PAR module which is free http://search.cpan.org/~smueller/PAR-0.956/lib/PAR.pm -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Tuesday, 17 October 2006 4:03 PM To: ukhas jean Cc: Active Perl Subject: Re: perl exe ge

RE: Extracting numbers from a string

2006-03-21 Thread Toby Stuart
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf > Of Naresh > Bajaj > Sent: Wednesday, 22 March 2006 12:29 PM > To: activeperl@listserv.ActiveState.com > Subject: Extracting numbers from a string > > > Hello all, > I have one string PT2H46M7.815S. > It

RE: Parading the Buttons on a frame help!!

2003-09-03 Thread Toby Stuart
> -Original Message- > From: jon sof [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 04, 2003 12:06 AM > To: [EMAIL PROTECTED] > Subject: Parading the Buttons on a frame help!! > > > I have a frame (Tk) and i want to arrange the buttons on it. > For example 2 > or three buttonss

RE: Perl equivelant of C's switch function

2002-11-27 Thread Toby Stuart
> -Original Message- > From: Mohammed Khatib [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 28, 2002 3:47 PM > To: Perl > Subject: Perl equivelant of C's switch function > > Hi Everyone, > > I'm looking for a function in Perl that is equivelant to C's "switch" fu

RE: $text->insert(?);

2002-11-18 Thread Toby Stuart
> -Original Message- > From: Hudson T Clark [mailto:[EMAIL PROTECTED]] > Sent: Saturday, November 30, 2002 6:37 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: $text->insert(?); > > > why doesn't this work... I'm so frusted ERR... lol > > #!/usr/bin/perl -w > use Tk;

RE: $text->insert(?);

2002-11-18 Thread Toby Stuart
> -Original Message- > From: Hudson T Clark [mailto:[EMAIL PROTECTED]] > Sent: Saturday, November 30, 2002 4:45 PM > To: [EMAIL PROTECTED] > Subject: $text->insert(?); > > > I'm having problems finding examples of inserting text into a Text > widget... use strict; use Tk; my $mw =

RE: another "cute" perl/tk question

2002-11-18 Thread Toby Stuart
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 19, 2002 4:19 AM > To: [EMAIL PROTECTED] > Subject: another "cute" perl/tk question > > > Ok if I take out the if(){} statement then it will simply > fill the bar... as predicted. Howeve

RE: win32:: ole excel

2002-09-30 Thread Toby Stuart
i'll bet it's because you are passing the literal string "xlUnderlineStyleSingle" instead of its underlying value ie. 2 try $Sheet->Range("a10")->Font->{Underline} = 2; hth toby > -Original Message- > From: praveen vejandla [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 01, 2002

RE: Stripping of string

2002-06-10 Thread Toby Stuart
just in case you don't like the rex approach and proving TMTOWTDI File::Basename is good at this sort of thing. it wont remove the trailing comma however ... best to chop() it off. use File::Basename; $file = 'G:/ENT/COR/INB/BANK/test.zip,'; $file = basename($file); chop($file); print $file;

RE: A problem with "perldoc"

2002-03-04 Thread Toby Stuart
make sure the perl bin directory is in your PATH (type SET at the command prompt to find out) perldoc.bat should be located in the perl bin directory eg. c:\perl\bin\perldoc.bat hth t0by -Original Message- From: Marc S Weintraub [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002

RE: perl interface to dll's

2002-02-25 Thread Toby Stuart
Have a look at the Win32::API module. -Original Message- From: Craig R. Hill [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 3:17 AM To: [EMAIL PROTECTED] Subject: perl interface to dll's Hi, I would like to link in some 3rd party toolkits into my perl scripts, via dll's or

RE: html menus

2002-02-20 Thread Toby Stuart
u will probably need to use a combination of html, styles and javascript. this is not the right list to ask these type of questions. try one of the HTML/Scripting lists from M$ or just browse examples on the web. i think www.wdvl.com has a few. -Original Message- From: Danny Wong [ma

RE: Win32::OLE

2002-01-28 Thread Toby Stuart
AIL PROTECTED]] Sent: Tuesday, January 29, 2002 10:59 AM To: Toby Stuart Cc: [EMAIL PROTECTED] Subject: RE: Win32::OLE I did that, and found that it had another PROGID that also failed to provide the desired effect, viz. DirectSS.DirectSS.1. Running the provided example code elicits: Win32::OLE(0.15

RE: How to filter space character ??

2002-01-20 Thread Toby Stuart
/\s{1}/null/   look at substitution and regular expressions.   hth   t0by -Original Message-From: Jay Liam [mailto:[EMAIL PROTECTED]]Sent: Monday, January 21, 2002 3:17 PMTo: [EMAIL PROTECTED]Subject: How to filter space character ?? Hi folks,   I got one stupid que

RE: Regex

2001-12-19 Thread Toby Stuart
show some sample data. t0by > -Original Message- > From: Mohammed Khatib [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, December 20, 2001 3:26 PM > To: Perl > Subject: Regex > > Hi Gurus, > > I've got the following "if" statement in my program: > > if ($rec =~ m!^tableofstatutory

RE: Please please please help me with Perl.

2001-12-17 Thread Toby Stuart
SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, December 18, 2001 11:33 AM > To: '[EMAIL PROTECTED]' > Cc: 'Toby Stuart' > Subject: RE: Please please please help me with Perl. > > Now, now Toby - temper temper. > > I don't know - they already have 3 whol

RE: Please please please help me with Perl.

2001-12-17 Thread Toby Stuart
do whatever u bloody like. why should i care. i'm happy here and have been for years. bugger off! t0by > -Original Message- > From: Bharat Bikram Thapa [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, December 18, 2001 10:36 AM > To: [EMAIL PROTECTED] > Subject: RE: Please please pleas

RE: FileName Pattern Matching

2001-09-27 Thread Toby Stuart
> >>By the way, what does the m#. do in the statement: if (m#.+\\ulog#i)? > > u can use any char as the match/subst delimiter as long as you keep em the > same > > eg.. > > m/.../.../; > m/?...?...?; [t0by] whoops. that should be: m?...?...?; > m#...#...#; > s-...-...-; > s!...

RE: FileName Pattern Matching

2001-09-27 Thread Toby Stuart
>>By the way, what does the m#. do in the statement: if (m#.+\\ulog#i)? u can use any char as the match/subst delimiter as long as you keep em the same eg.. m/.../.../; m/?...?...?; m#...#...#; s-...-...-; s!...!...!; > -Original Message- > From: Steven&Alison Chu

RE: How to get values ????

2001-08-15 Thread Toby Stuart
> > swetha. > > - Original Message - > From: "Toby Stuart" <[EMAIL PROTECTED]> > To: "'Swetha Jain'" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Wednesday, August 15, 2001 10:19 PM > Subject: RE: How to g

RE: How to get values ????

2001-08-15 Thread Toby Stuart
o MS.JPG'); > > print qq| the values are $info|; > > > > I got 0 to $info variable. Am I doing some thing wrong ??? > > > > Thanks, > > Swetha. > > > > > > >From: Toby Stuart > >To: "'Swetha Jain&

RE: RE: (no subject)

2001-08-06 Thread Toby Stuart
> ÔÚ 2001-08-07 14:26:00 > >> activeperl > >> I just downloaded ActivePerl and Perl Dev Kit yesterday! It says > Perl > >> Dev Kit is not a freeware,i just can use is for 7 days. > > [t0by] so! >so i want to use perl dev kit for a long time until i dont like it > anymore! >

RE: (no subject)

2001-08-06 Thread Toby Stuart
> activeperl > I just downloaded ActivePerl and Perl Dev Kit yesterday! It says Perl > Dev Kit is not a freeware,i just can use is for 7 days. [t0by] so! > How can I crash it?! [t0by] eh? > Or maybe tell me some freeware instead,please! [t0by] freeware to do wha

RE: Passing perl variables to Javascript function

2001-05-10 Thread Toby Stuart
have perl/CGI build the javascript t0by > -Original Message- > From: Kan, Yu-Ting [SMTP:[EMAIL PROTECTED]] > Sent: Friday, May 11, 2001 2:28 PM > To: ActivePerl > Subject: cgi: Passing perl variables to Javascript function > > Dear all, > > I spend half of day trying how can I g