Hi,
I am developing an application which will provide the notification after certain events; for that I am using DesktopNotification alert. as my application get the events in background I am creating thread to handle it separately. Every thread creates an notification and show it in the taskbar.
Now my problem - when there are more than one notification arrives, it has been processed by different threads so my notification alert does not get Tiled and show in a background of previous alerts.
Is some one had a same problem; need suggestion how to implement this functionality.
Please send me suggestions asap.
Thanks
Jay
Thanks for your suggestion Torrey.
Now I have another issue related to Desktop alert text.
Currently I am setting a link on Desktop alert, and whenever user clicks it, it takes to some other page.
But while setting link text, Its getting clipped. Characters are getting closer from left to right and at the end of the line, character are getting overlapped.
Please let me know how would I fix this.
I tried with letter spacing but it did not work.
Regards,
You could use that created thread along with a global ArrayList that stores what you need to process and in the thread use a conditional while block to process and remove each item in order received. That should get them to tile since it'll be in the same instance.