RE: help with perl/Tk

2002-03-08 Thread murphy, daniel (BMC Eng)
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

RE: help with perl/Tk

2002-03-07 Thread Jonathan E. Paton
> 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

Re: help with perl/Tk

2002-03-07 Thread Tagore Smith
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

Re: help with perl/Tk

2002-03-07 Thread Roger Morris
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

Re: help with perl/Tk

2002-03-07 Thread Joe Raube
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

RE: help with perl/Tk

2002-03-07 Thread Nikola Janceski
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",

Re: help with perl/Tk

2002-03-07 Thread Tanton Gibbs
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: <