I want a field in my form that shows the last time the subform was updated. How would I do that?
A awach Nov 28, 2006 #1 I want a field in my form that shows the last time the subform was updated. How would I do that?
T TonyT Nov 28, 2006 #2 Hi awach, you could use the On Current event of the subform with something like; Me.txtBox1 = Format(Now, "dd/mm/yy hh:mm:ss") (english date format, change as required) TonyT..
Hi awach, you could use the On Current event of the subform with something like; Me.txtBox1 = Format(Now, "dd/mm/yy hh:mm:ss") (english date format, change as required) TonyT..
A awach Nov 28, 2006 #3 I don't have a On Current event. TonyT said: Hi awach, you could use the On Current event of the subform with something like; Me.txtBox1 = Format(Now, "dd/mm/yy hh:mm:ss") (english date format, change as required) TonyT.. Click to expand...
I don't have a On Current event. TonyT said: Hi awach, you could use the On Current event of the subform with something like; Me.txtBox1 = Format(Now, "dd/mm/yy hh:mm:ss") (english date format, change as required) TonyT.. Click to expand...
A awach Nov 28, 2006 #4 I thought I could use the "After Update" control on the subform but I'm not sure how to do that. Any ideas?
I thought I could use the "After Update" control on the subform but I'm not sure how to do that. Any ideas?