J
John Vinson
On Wed, 27 Apr 2005 15:17:36 -0700, MarcTA
If you have a question, it's considered polite to ask it in the text
area, not just the subject line; provide enough context that a
volunteer here can make a reasoned reply.
At a guess, you can use the Combo Box's AfterUpdate event. Invoke the
Code Builder by clicking the ... icon; put in code like
Private Sub combobox_AfterUpdate()
If Me!combobox = "Complete" Then
Me!txtDateComplete = Date ' or Now for date & time
End If
End Sub
John W. Vinson[MVP]
If you have a question, it's considered polite to ask it in the text
area, not just the subject line; provide enough context that a
volunteer here can make a reasoned reply.
At a guess, you can use the Combo Box's AfterUpdate event. Invoke the
Code Builder by clicking the ... icon; put in code like
Private Sub combobox_AfterUpdate()
If Me!combobox = "Complete" Then
Me!txtDateComplete = Date ' or Now for date & time
End If
End Sub
John W. Vinson[MVP]