Help on JInternalFrame
Hello Everybody,
I'm constantly getting an error with JInternalFrame. Following is my code. It's always going to the catch. Please help me out.
Thank you,
JInternalFrame internal = new JInternalFrame("TestFrame",true,true,true,true);
internal.setVisible(true);
internal.setAutoscrolls(true);
try
{
internal.setMaximum(true);
}
catch (Exception e)
{
System.out.println("inside JInternalFrame catch");
}

