Hide taskbar button while java app displayed

Hi, i believe that there were same subjects have been posted before about how to hide java taskbar button, and the answer is using native method....

Since java 6 provide System Tray that we can put an icon at the notification area, does java 6 provide any method to hide taskbar button while that java app shown?

[325 byte] By [Kuntilanaka] at [2007-11-27 4:24:38]
# 1
Try to use JDialog not JFrame.regards,Stas
StanislavLa at 2007-7-12 9:32:28 > top of Java-index,Desktop,Core GUI APIs...
# 2
... Or a JWindow, in case you don't need any window decorations, title bar, etc...
MikePa at 2007-7-12 9:32:28 > top of Java-index,Desktop,Core GUI APIs...
# 3
JDialog is definitely what i needed...i just change JFrame to JDialog and it work great...Thanks StanislavL...Duke is yours.....P/S: I will try JWindow later...thanks for the info MikeP...
Kuntilanaka at 2007-7-12 9:32:28 > top of Java-index,Desktop,Core GUI APIs...