disable the timing event

  • Thread starter Thread starter JohnE
  • Start date Start date
J

JohnE

I have a splash screen (made from a form) that opens for a few seconds then
closes and the main menu opens. All thru the Form_Timer event. The head
person wants to be able to open/show the splash screen without it closing
from the timer. I placed an invisible button on the splash screen that would
appear when opened thru the main menu that allows the splash screen to be
closed.

My question deals with how do I stop the Form_Timer from running or if I put
a high interval to it to stop it and close the form?

Thanks...John
 
JohnE said:
I have a splash screen (made from a form) that opens for a few seconds then
closes and the main menu opens. All thru the Form_Timer event. The head
person wants to be able to open/show the splash screen without it closing
from the timer. I placed an invisible button on the splash screen that
would
appear when opened thru the main menu that allows the splash screen to be
closed.

My question deals with how do I stop the Form_Timer from running or if I
put
a high interval to it to stop it and close the form?


I'm not sure exactly what you're asking, but if you set the splash form's
TimerInterval to 0, the Timer event won't fire.
 
Back
Top