Check ligatur (ß) problem with new Access 2010

L

Lorenz Hölscher

Hello everyone,

Access 2003 had an error as following: having a report with the german
default name "Berichtsfuß" (which is a report footer) the database
won't work anymore on a japanese system. The error description tells
you that VBA can't be loaded (I'm not sure about the exact text) but
the solution is to rename it and remove the ß character.

Could anyone check this for me with the new Access 2010 version (Beta,
I know)?
- I could send you a small accdb with one table, one report and one
subprocedure in it or
- you could run the following code in your accdb:
________________________________
Sub RenameReportFooter()
DoCmd.OpenReport "Report1", acViewDesign
Screen.ActiveReport.Section(acPageFooter).Name =
"Seitenfußbereich" 'must have a page footer before!
End Sub
'then save the report and try to reopen the database...
_____________________

Thanks for your help,
Lorenz

(if you prefer the accdb file, this ist my email: internet[add the
missing character here]software-dozent.de)
 

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