Autopopulate a Field

Novice1

Registered User.
Local time
Today, 08:18
Joined
Mar 9, 2004
Messages
385
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
 
I tried using your exact code on a test form with one text box and the button and it worked fined. Perhaps there is some other code in your form that is causing the problem???
 
Thanks ... I'll try to decipher
 

Users who are viewing this thread

Back
Top Bottom