Hi All,
I am implementing a notification form similar to outlook email notification.
my application call this notification form from a dll. this dll includes a form class and this dll has some object value to display the contents on form.
i am filling the form with the object before "form.show. "
form has some timer to implement hide and fading.
my problem is when ever form is showing, the focus...
User Profile
Collapse
-
vsrprasad16 started a topic how to remove focus of notification form similar to outlook email notificationin .NEThow to remove focus of notification form similar to outlook email notification
-
running threading method periodically
Hi All,
Am new to threading concepts.
i want to start a thread with a method DoProcess and run this method periodically at some time interval. for this i implemented like below.
public void startWatcher(bo ol setTimer)
{
TimerCallback timerdelg = new TimerCallback(s tart);
tmr = new Timer(timerdelg , null, 8000, 60000);
}
void start()... -
call backs from form to background thread
Hi All,
I am running a background thread and this thread will process a method and then based on result it will load a form with some controls. after work, i need to close the form and also kill the same thread that loaded the form.
How to handle this. pls help me ASAP.
my code:
public void startWatcher()
{
Thread.Sleep(20 0);
watcherThread = new...
No activity results to display
Show More