Archive for September 5th, 2007
setIcon(false); darn it …
a week, I’ve been coding uselessly, trying to redisplay my singleton JInternalFrame after it was minimized. I tried to add the setBounds(…) and toFront() but it didn’t appear from its minimized condition.
a week of coding and recoding and searching and searching, only to find that I only need to add this one:
try {
singletonIF.setIcon(false);
} [...]
