To simplify it I have a form with a checkbox and textbox.
When the user clicks the check box the current date is inserted into the textbox.
Private Sub Check1_Click()
txtS1openDate.Text = Date
End Sub
both the checkbox = true and the date in the textbox are saved to a SQL database. So far so good
but when the user opens the form a few days later for some reason the new current date is inserted into the textbox without clicking the checkbox which of course already has a check in it. I need it to retain the original date stored in the database.
To add to the confusion I have another form doing a similiar thing and it works fine.
I sure hope someone has some suggestions.
Thanks for any and all help
When the user clicks the check box the current date is inserted into the textbox.
Private Sub Check1_Click()
txtS1openDate.Text = Date
End Sub
both the checkbox = true and the date in the textbox are saved to a SQL database. So far so good
To add to the confusion I have another form doing a similiar thing and it works fine.
I sure hope someone has some suggestions.
Thanks for any and all help