G
GD
I have a form that uses the AfterUpdate event procedure to make several areas
visible or invisible. Example:
Private Sub txtFergusonChargeback__AfterUpdate()
If Me.txtFergusonChargeback_ <> "" Then
Me.txtEntryDate = Date
Else
Me.txtEntryDate = ""
End If
End Sub
Private Sub Form_Current()
If Me.txtFergusonChargeback_ <> "" Then
Me.txtEntryDate = Date
Else
Me.txtEntryDate = ""
End If
End Sub
However, this is not exactly what I'm looking for. Basically, I need for
the date to appear if there is any entry in txtFergusonChargeback_, not just
after it's updated. What event do I use for that?
visible or invisible. Example:
Private Sub txtFergusonChargeback__AfterUpdate()
If Me.txtFergusonChargeback_ <> "" Then
Me.txtEntryDate = Date
Else
Me.txtEntryDate = ""
End If
End Sub
Private Sub Form_Current()
If Me.txtFergusonChargeback_ <> "" Then
Me.txtEntryDate = Date
Else
Me.txtEntryDate = ""
End If
End Sub
However, this is not exactly what I'm looking for. Basically, I need for
the date to appear if there is any entry in txtFergusonChargeback_, not just
after it's updated. What event do I use for that?