Luis, since everyone else on the channel decided to tolerate posts having nothing to do with JSP, I decided to leave it alone; I figured he'd get lots of help with a GUI issue, and compilation error is usually pretty easy to work out anyway. I *knew* where it belonged; I figured that if he didn't and nobody else seemed to care, it didn't matter. Last note: you should have told the original poster it was off-topic instead... :) >From: Luis Javier Beltran <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: I am a beginner >Date: Thu, 8 Feb 2001 08:19:02 -0500 > >Just a comment Joseph, this message should be posted on a java programming >forum, as this is for JSP. > >I'll help you understand the error: > >> > clicker.java:15: cannot resolve symbol > > ^ >This means the problem is in line 15 of clicker.java > > >> > clicker.java:15: cannot resolve symbol > > ^ > >In this case this means there's a method not found for a given class... > > >> > symbol : method addActionListner (clicker) > > >.... method addActionListener(clicker)... > > >> > location: class java.awt.Button >> > butto1.addActionListner(this) > > >.... for class java.awt.Button, butto1 in your code > >Solution: the method isn't addActionListner, it's addActionListener, you >missed the 'e' > >Hope this helps, > >Luis Javier > >=========================================================================== >To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff >JSP-INTEREST". >For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST >DIGEST". >Some relevant FAQs on JSP/Servlets can be found at: > >http://java.sun.com/products/jsp/faq.html >http://www.esperanto.org.nz/jsp/jspfaq.html >http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP >http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
