Quick question to make sure it's best practice. If not, what's the better way to do it?
Can I trigger multiple events in the same event processor eg
#region TimerEventProcessor
private void TimerEventProcessor(Object myObject, EventArgs myEventArgs)
{
TriggerCustomEvent(Flash,0,FlashSpeed);
TriggerCustomEvent(Play_Sound,0,FlashSpeed);
}
#endregion
It works but I would like to know if this is the way I should be coding for NT?
thanks

Comment