I need help assigning a command to a field from one of my tables that I have in my form. I just want assign a Me.Tbx[FieldName]= Now() to a DblClick Event.
Here are my screenshots.
Can someone help me properly code this?
I need help assigning a command to a field from one of my tables that I have in my form. I just want assign a Me.Tbx[FieldName]= Now() to a DblClick Event.
Here are my screenshots.
Can someone help me properly code this?
Your screen grab and sample code indicates that the Control's name is DateOutCCam, not tbxDateOutCCam! So your code should be
Me.DateOutCCam = Now()
Linq ;0)>