Hi. Hope you guys could help me. I just need to have to confirm what happens when I have this program code. I have two timers, both running concurrently. I have a single procedure which is called on both timers. Will it not have a conflict on local variables?

Code:
Public Sub tmrTimer1_Timer
     ProcedureOne 1
End Sub

Public Sub tmrTimer2_Timer
     ProcedureOne 2
End Sub

Private Sub ProcedureOne(ByVal x as integer)
     'Statements
End Sub
I just need to confirm if calling the function from the second timer won't affect anything on the call from the first timer. Thank you very much