Can you create a new, unsecured Access 97 mdb, and import everything?
That new file should then convert okay.
You might even be able to create a new Access 2003 file, and import
everything:
File | Get External | Import
At worst, that should import all the objects that don't have the problem.
Another possiblity would be to export the macros from Access 97 to a text
file, and then import them into another unsecured mdb. Perform the export
with this kind of thing:
SaveAsText acMacro, "Macro1", "C:\macro1.txt"
and the import:
LoadFromText acMacro, "Macro1", "C:\macro1.txt"

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> I'm trying to convert an Access 97 database to Access 2003 how ever I get
> an
[quoted text clipped - 14 lines]
>
> Anthony