Re: Help with parameters

1999-05-13 Thread Mario Jorge Nunes Filipe
Mario Jorge Nunes Filipe wrote: > > [EMAIL PROTECTED] wrote: > > > > Try putting the paramater name and value's in quotes, like this > > > > > > This wasn't the sollution either but i've found the solution. > > My initial code had a constructor for the class wich called a priva

Re: Help with parameters

1999-05-13 Thread Mario Jorge Nunes Filipe
[EMAIL PROTECTED] wrote: > > Try putting the paramater name and value's in quotes, like this > > This wasn't the sollution either but i've found the solution. My initial code had a constructor for the class wich called a private function init_components. When i removed the con

Re: Help with parameters

1999-05-13 Thread alx
Try putting the paramater name and value's in quotes, like this --Alex McCarrier --Momentum Software, Inc. On Thu, 13 May 1999, Mario Jorge Nunes Filipe wrote: > Joel McCarty wrote: > > > > Mario, > > > > Java is a case sensitive language. You are getting a NullPointerException > > because

Help with parameters

1999-05-13 Thread Mario Jorge Nunes Filipe
Hi I'm trying to pass parameters to an applet. My html says the following : You don't have java!! My applet is like this : import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.tree.*; import javax.swing.event.*; import javax.swing.JTree; import javax.swing.t

Re: Help with parameters

1999-05-13 Thread Mario Jorge Nunes Filipe
Joel McCarty wrote: > > Mario, > > Java is a case sensitive language. You are getting a NullPointerException > because the getParameter call is looking for WINDOWCLASS and can't find it. > Please change the case of the param name to match that in the java class. Actually it doesn't.

Re: Help with parameters

1999-05-13 Thread Joel McCarty
Mario, Java is a case sensitive language. You are getting a NullPointerException because the getParameter call is looking for WINDOWCLASS and can't find it. Please change the case of the param name to match that in the java class. Hope this helps, Joel McCarty Mario Jorge Nunes Filipe wrote: