Manually invoke a timer time-up event?
I have a timer that I'm using in my winforms application. I was wondering is there a way to manually invoke the timer time-up event by not actually waiting for the timer to expire? I need to have the timer up event code executed in my application at one point.
private: System::Void timeup(System::Object^ sender, System::EventArgs^ e) {
}
Is there a way?
Thanks!!

