Hi,
I have a for in my database with several fields. Now I want for the timer to be activated after entering data into a particular field. I have this but I am not getting the result.
Can anyone help me out on what I am doing wrong here?
Thanks,
I have a for in my database with several fields. Now I want for the timer to be activated after entering data into a particular field. I have this but I am not getting the result.
Code:
Private Sub Form_Current() If Me.Number = "*" Then Me.TimerInterval = 500 Else Me.TimerInterval = 0 Me.lblProcessing.Visible = False End If End Sub
Code:
With Me.lblProcessing .Visible = Not Me.lblProcessing.Visible End With
Thanks,
Comment