Originally Posted by
GregBrannon
Your English is fine. Don't sweat that.
Netbeans is a fancy editor and graphical interface for building GUIs, if used that way. The description of an error as a Netbeans error isn't really helpful. It is much more helpful if errors are identified as either syntax (usually highlighted by the IDE before compiling), compiler (errors that occur when trying to compile), run time (errors that occur after the program has successfully compiled while running the program), or logic (errors that cause the program's results to be other than desired or expected.)
The error you've posted is not clear, because I cannot tell what code it is complaining about. I've read a few posts by others who've had the same error, and it's usually because the Container.add() method (in one of its many forms) has been used incorrectly, either specifying a position that doesn't exist or being used to add a component to a container that is already full. Investigate that as a possible reason for your error.
If you can't post a short, runnable example that demonstrates the problem, it would be helpful to see the entire error message, copied from exactly as it appears at your end and pasted into a post, with the specific line(s) of code mentioned by the error.
Problem Solved, i'm switch from using JInternalFrame to using JDialog. but New Problem appear, i can't removeTableModelListener() on diferent JDialog. I will post the new problem in new post.
Thanks all for the support,
Best & Regrads.
I Love Java Programming.