Drop two Timer Control from ToolBox to your Form window.
and also drop two command button
Set inverval property of timer control to 1000.
Private Sub Command1_click
if timer1.enabled=true then ' Timer is running
timer1.enabled=false 'Stop timer
else ' Timer is not running
timer1.enabled=true 'Start Timer
end if
end sub
Private Sub Command2_click
if timer2.enabled=true then ' Timer is running
timer2.enabled=false 'Stop timer
else ' Timer is not running
timer2.enabled=true 'Start Timer
end if
end sub