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
[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
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
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
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.
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: