Hi,
Can you please tell me how to handle multiple alerts? Currently when i tried to show same alert multiple time, it only shows one time. Also there is no property, where i can find if alert is visible.
Also can we drag desktop alert from Application's system tray icon, just like other application shows. Means desktop alert should be initiate from Application's system tray icon.
Please reply me as soon as possible.
Regards,
Huzaifa
Can you please tell me how to handle multiple alerts? Currently when i tried to show same alert multiple time, it only shows one time. Also there is no property, where i can find if alert is visible.
Also can we drag desktop alert from Application's system tray icon, just like other application shows. Means desktop alert should be initiate from Application's system tray icon.
Please reply me as soon as possible.
Regards,
Huzaifa
6 Answers, 1 is accepted
0
Bernd Mueller
Top achievements
Rank 1
answered on 20 Oct 2010, 01:47 PM
If you want to show multiple desktop alerts you have to create a new instance for every alert.
If i want to replace a desktop alert with another one i dispose the one instance and create another new one.
If i want to replace a desktop alert with another one i dispose the one instance and create another new one.
0
Hi Huzaifa,
Before addressing your question, we would kindly ask you to provide us with a response to the questions asked in your thread "Month selector in DateTime Picker"
I am looking forward to your reply.
Greetings,
Stefan
the Telerik team
Before addressing your question, we would kindly ask you to provide us with a response to the questions asked in your thread "Month selector in DateTime Picker"
I am looking forward to your reply.
Greetings,
Stefan
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Huzaifa
Top achievements
Rank 1
answered on 25 Oct 2010, 06:38 PM
I think, i have already post new Thread for "Month selector in date time picker" with Salman's ID.
0
Hi Huzaifa,
Thank you for writing.
We do not have any information regarding "Salman" and no replies were posted in the support thread that I mentioned. Please review it and send us the requested information there.
I am looking forward to your reply.
All the best,
Stefan
the Telerik team
Thank you for writing.
We do not have any information regarding "Salman" and no replies were posted in the support thread that I mentioned. Please review it and send us the requested information there.
I am looking forward to your reply.
All the best,
Stefan
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
SHAHROKH
Top achievements
Rank 2
answered on 03 Oct 2012, 12:26 PM
0
SHAHROKH
Top achievements
Rank 2
answered on 03 Oct 2012, 01:40 PM
Hi
If you want to show some desktop alert you should to type these codes:
int i ;
for (i = 0; i <= 2; i++)
{
RadDesktopAlert a = new RadDesktopAlert();
a.CaptionText = i.ToString();
a.Show();
}
If you want to show some desktop alert you should to type these codes:
int i ;
for (i = 0; i <= 2; i++)
{
RadDesktopAlert a = new RadDesktopAlert();
a.CaptionText = i.ToString();
a.Show();
}