Translate code to French Canadian...

  • Thread starter Thread starter CWH via AccessMonster.com
  • Start date Start date
C

CWH via AccessMonster.com

I am using this code with a command button to compact a DB

CommandBars("Menu Bar"). _
Controls("Tools"). _
Controls("Database utilities"). _
Controls("Compact and repair database..."). _
accDoDefaultAction

This works great in our English DB however I have a new user in Canada who
has Windows XP setup to run all programs and menus in French Canadian and
this will not run on his computer. Has anyone come across an accurate way to
convert/ translate this code?
 
CWH via AccessMonster.com said:
This works great in our English DB however I have a new user in Canada who
has Windows XP setup to run all programs and menus in French Canadian and
this will not run on his computer. Has anyone come across an accurate way to
convert/ translate this code?

Rename the backend. Run the following command.

DBEngine.CompactDatabase OldFileName, NewFileName

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
 
Back
Top