I have a button on a form. When the user double clicks the button it places text in a given field. The problem is the field only populates if the user clicks in the field (ActionTaken) thats being populated. This is the code I placed ON DOUBLE CLICK
If IsNull(Me![ActionTaken]) Then
Me.ActionTaken = "E-mailed member this date to fix the discrepancy within five duty days."
End If
I tried changing the focus thinking that would populate the field. No luck. Any ideas?
Thanks
If IsNull(Me![ActionTaken]) Then
Me.ActionTaken = "E-mailed member this date to fix the discrepancy within five duty days."
End If
I tried changing the focus thinking that would populate the field. No luck. Any ideas?
Thanks