I have a imgPencil on a continuous form. OnCurrentEvent is set to:
If Me.txtActivityType = 22 Then
Me.imgPencil.Visible = True
Else
Me.imgPencil.Visible = False
End If
The above code works fine on a Single Form.
Is there a way to get it to work on a continuous form without displaying the image on all the records?
Thanks!
If Me.txtActivityType = 22 Then
Me.imgPencil.Visible = True
Else
Me.imgPencil.Visible = False
End If
The above code works fine on a Single Form.
Is there a way to get it to work on a continuous form without displaying the image on all the records?
Thanks!