Add Jcombo in Task Bar.

Hi, Can anyone tell me how to add JComboBox or JTextField in Windows Taskbarfor Desktop Search.Thanks Nicky
[142 byte] By [LaKshya_Nickya] at [2007-11-27 4:40:12]
# 1
Because you would have to build a Windows control Java isn't the best tool for that job. This is one of those times when Visual Studio would be your friend. Use the right tool for the job at hand.PS.
puckstopper31a at 2007-7-12 9:51:06 > top of Java-index,Java Essentials,Java Programming...
# 2
I don't Get that which tool you are talking about here.Thanks
LaKshya_Nickya at 2007-7-12 9:51:06 > top of Java-index,Java Essentials,Java Programming...
# 3
Microsoft Visual Studio. Your best bet would be to look at doing it in C++, but it could probably be done in C# (which has similarities to Java) as well. I would suggest a .Net forum for your question.PS.
puckstopper31a at 2007-7-12 9:51:06 > top of Java-index,Java Essentials,Java Programming...
# 4
Thanks for you reply. but i want to know how to implement it in Java.Thanks
LaKshya_Nickya at 2007-7-12 9:51:06 > top of Java-index,Java Essentials,Java Programming...
# 5

Unless I am very much mistaken (which is not at all uncommon) there's not (at least not an easy way) way to do what you're asking. Reason being that to put something into the Windows task bar requires that you be able to get hold of the Windows hooks that make it a task bar application, and those don't exist in Java.

I can tell you where in the Swing code you'd have to get hold of it though, and that would be in the JFrame's window listener for being iconified. But I don't know of a way to put it into the TaskBar the way you're describing. What you're asking for is a platform (very platform) specific thing that Sun understandably tries to stay away from.

PS.

puckstopper31a at 2007-7-12 9:51:06 > top of Java-index,Java Essentials,Java Programming...
# 6
Thanks for ur Reply
LaKshya_Nickya at 2007-7-12 9:51:06 > top of Java-index,Java Essentials,Java Programming...