vote up 0 vote down star

I have a project in which status bar gets updated many a times. Now i want to create a delegate such that whenever my status bar gets updated then an event is triggered inside the main form class and respective text gets displayed in the status bar, so that i dont have to create a different StatusLabel.Text for everytime my status bar gets updated. How to do it?

flag

44% accept rate

1 Answer

vote up 0 vote down

This description sounds a little convoluted. Are you sure you want a statusbar_updated event to update the status bar? I think this would cause an infinite loop.

I think what you want is an event on your form such that when fired, the status bar is updated. Then all the other code can fire the event when it wants to update the statusbar. The neat thing about this is that if you want logging, you create another subscriber to the event and it works.

link|flag
so whats the procedure and syntax like? – chh Mar 14 at 17:57
1  
kinda starting to sound like plzgivecode... – scraimer Mar 15 at 22:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.