Jump to content
Xtreme .Net Talk

GetYourAnswers

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by GetYourAnswers

  1. Hi Lanc1988, Try This, Set the Timers Interval Property to 1000 milliseconds. Set the Timers Enabled Property to False. Declare a Variable as, Dim iMaxTime as Integer = 1200. Dim iMinutes as Integer = 20. In Start Buttons Click add Follwing Code: Timer1.Enabled = True In Stop Buttons Click add the following Code: Timer1.Enabled = False In Reset Buttons Click add the following Code: iMaxTime = 1200 iMinutes = 20 Label1.Text = "" In the Timers Event which will fire every 1 second add folowing code, If iMaxTime>0 then If IMaxTime Mod 60 = 0 then Label1.Text = IMinutes iMinutes-=1 End If End IF iMaxTime-=1 HOPE THIS WORKS OUT TRY IT!!! GetYourAnswers
  2. Hi Spiel79, Can you tell me at which line number are you getting this exception. GetYourAnswers
×
×
  • Create New...