How to popup massage below Taskbar right-corner

Hi every body I am a student and do senior project.

I have some problem to develope java programing with Windown XP

How I do popup massage on taskbar similar MSN. I would like to develop server/client, when server send massage to client the client respon show massage popup on taskbar (similar MSN popup)

any body know please help me.

I want example or source code or lib.

or send E-mail for me my E-mailphissanu_k@hotmail.com

Thank you very much.

[513 byte] By [kaenkoona] at [2007-11-27 5:40:22]
# 1

basic way of doing this (certainly not the better):

// when message is received

JDialog d = new JDialog();

d.setSize(200,200);

d.setLocation(theXLocation, theYLocation);

d.add(new JLabel(message);

d.setVisible(true);

where the x and y location match the right corner

to get these locations, see the toolkit class, that will allow you to get the dimension of the screen

calvino_inda at 2007-7-12 15:16:41 > top of Java-index,Java Essentials,Java Programming...