Good Afternoon,
I have a unique situation, however I think it is a relatively easy fix.
I created a text box on a form me.base_date that displays the date when you open the database. At the time of creation I had access 2003. I have since upgraded to 2007 and made some changes to the database.....nothing catestrophic. In fact they were so small I did not bother to note the changes made.
Long story short. The users that are still working with access 2003 are unable to open my database without a "Can't find project or libray" error.
I have tried to check the microsoft 12.0 box under references but that did nothing.
I need to find a way that the associates can open the database without this error.
the code is listed below.
I have a unique situation, however I think it is a relatively easy fix.
I created a text box on a form me.base_date that displays the date when you open the database. At the time of creation I had access 2003. I have since upgraded to 2007 and made some changes to the database.....nothing catestrophic. In fact they were so small I did not bother to note the changes made.
Long story short. The users that are still working with access 2003 are unable to open my database without a "Can't find project or libray" error.
I have tried to check the microsoft 12.0 box under references but that did nothing.
I need to find a way that the associates can open the database without this error.
the code is listed below.
PHP:
Private Sub Form_Open(Cancel As Integer)
Me.base_date.Value = Format(Date, "mm/dd/yyyy")
DoCmd.Maximize
End Sub