MA 01748
EMC²
where information lives
-Original Message-
From: Jonathan E. Paton [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 07, 2002 5:16 PM
To: [EMAIL PROTECTED]
Subject: RE: help with perl/Tk
> Look for simple mistakes.. Try the Perl/Tk book by
> O'Rie
> Look for simple mistakes.. Try the Perl/Tk book by
> O'Rielly. Not bad... but not great like the other
> books by O'R.
I learned perlTk from "Perl in a Nutshell", if you are
going to shell out more money then head there - it's a
reference book that most of the important stuff in some
depth. Ho
richard noel fell wrote:
> Below is a simple script which I am using as part of my attempt to learn
> how to program a gui with perl and Tk. I have copied the program from a
> book, "Cross Platform Perl" (not very good, but some isolated good
> parts), but get the following error message when I tr
At 01:14 PM 3/7/2002 -0500, richard noel fell wrote:
>Below is a simple script which I am using as part of my attempt to learn
>how to program a gui with perl and Tk. I have copied the program from a
>book, "Cross Platform Perl" (not very good, but some isolated good
>parts), but get the following
My guess would be this line:
$filebutton=$menubar->Menubutton;(-text="File",
-underline=>0);
with the semi-colon after the word Menubutton
__
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free ema
Look for simple mistakes.. Try the Perl/Tk book by O'Rielly. Not bad... but
not great like the other books by O'R.
$filebutton=$menubar->Menubutton;(-text="File",
-underline=>0);
should be:
$filebutton=$menubar->Menubutton;(-text=>"File",
On line 8, you have
-text = "File"
instead of
-text => "File"
looks like a typo because you have it right every where else.
As for the warning, I don't use Tk and don't know if that is supposed to be
"end" or end();
- Original Message -
From: "richard noel fell" <[EMAIL PROTECTED]>
To: <