G Guest Oct 27, 2004 #1 I have a form in which I would like to disable data entry into a record if the record date is < today. Thanks
I have a form in which I would like to disable data entry into a record if the record date is < today. Thanks
D Dragon Oct 27, 2004 #2 Enter following code into your form's 'On Current' event. Adjust accordingly. If MyDate < Date Then AllowEdits = False Else AllowEdits = True End If
Enter following code into your form's 'On Current' event. Adjust accordingly. If MyDate < Date Then AllowEdits = False Else AllowEdits = True End If
G Guest Oct 27, 2004 #3 thanks Dragon said: Enter following code into your form's 'On Current' event. Adjust accordingly. If MyDate < Date Then AllowEdits = False Else AllowEdits = True End If Click to expand...
thanks Dragon said: Enter following code into your form's 'On Current' event. Adjust accordingly. If MyDate < Date Then AllowEdits = False Else AllowEdits = True End If Click to expand...