converting errors

N

NYDIA

I am trying to convert a database from microsoft 97 to
2002. When I try to run a report that was already set-up,
I get the following error message "compile error, cant
find project or library" I click on ok and it takes me the
visual basic window which shows:

Public Function FYDateSpan(intBeginFQ As Integer,
intBeginFY As Integer, intEndFQ As Integer, intEndFY As
Integer) As String
Dim strBeginDate As String
Dim strEndDate As String
strBeginDate = Format(FQYToBeginDate(intBeginFQ,
intBeginFY), "mmmm d, yyyy")
strEndDate = Format(FQYToEndDate(intEndFQ,
intEndFY), "mmmm d, yyyy")
FYDateSpan = strBeginDate & " through " & strEndDate
End Function

I went to the conversion error table that access created
and in one row it states "missing or broken vbe reference
to the file "program file" how can this be fixed???
 
G

Gina Whipp

SOunds like it's a referencing problem... In the design view go to the
module window and look under Tools... References... and check for ones that
say MISSING. You'll want to repair those.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top