JInternal Activate
Status: Beta
Brought to you by:
shfarr
When I activate a JInternalFrame from a DesktopPane or
when calling moveToFront() method of JInternalFrame is
produced a StackOverFlow.
public class JInternalFrame(){
public void activar(String idModulo){
try {
setVisible(true);
moveToFront(); //StackOverFlow
...
}
catch (Exception e) {
e.printStackTrace();
System.exit(0);
}
}
}
Sorry my english is bad.
Sebastian