Ameer Tamboli

Greenhorn
+ Follow
since Oct 10, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Ameer Tamboli

<res-sharing-scope>Shareable</res-sharing-scope>

Make it non-sharable.

Also don't forget to add the entry to ibm specific binding file with the JNDI name.

<resRefBindings xmi:id="ResourceRefBinding_11111111111" jndiName="tm/default">
<bindingResourceRef href="WEB-INF/web.xml#ResourceRef_11111111111"/>
</resRefBindings>

Regards,
Ameer
13 years ago
It works, but it requires two clicks to iconify the window again.
The solution worked for me is:

internalFrame.setSelected(true);
internalFrame.getDesktopPane().getDesktopManager().deiconifyFrame(internalFrame);
internalFrame.getDesktopPane().getDesktopManager().maximizeFrame(internalFrame);
internalFrame.getDesktopPane().getDesktopManager().minimizeFrame(internalFrame);
internalFrame.moveToFront();
14 years ago