Module Help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I am trying to convert Access 97 to 2002. When I try to compile the modules I get a problem that stats:

Function OpenStartup () as Boolean
' Displays Startup form only if database is not a design master or replica.
' Used in OnOpen property of Startup form.
On Error GoTo OpenStartup_Err
If IsItAReplica () Then
' This database is a design master or replica, so close Startup form
' before it is displayed.
.......and so on...it is showing the problem on the IsItReplica...any suggestions on how to fix this???
 
IsItAReplica isn't a built-in function in Access 97, so it must be coming
from somewhere else. Perhaps you have a library database to which your
original application refers, and you haven't included it in Access 2002?

--
Doug Steele, Microsoft Access MVP

(No private e-mails, please)


D said:
Hello,

I am trying to convert Access 97 to 2002. When I try to compile the
modules I get a problem that stats:
Function OpenStartup () as Boolean
' Displays Startup form only if database is not a design master or replica.
' Used in OnOpen property of Startup form.
On Error GoTo OpenStartup_Err
If IsItAReplica () Then
' This database is a design master or replica, so close Startup form
' before it is displayed.
......and so on...it is showing the problem on the IsItReplica...any
suggestions on how to fix this???
 
Back
Top