C
Cesar
I developed a program that will be deployed in Latin America that has
multiple language capabilities.
I stored the captions in a table in the BE database for each language
(English, spanish, and Portuguese).
To create a new language (there is interest to use the application in Europe
too), I need to create a new table (TableNew) from one of the existing
languages (TableRef) to translate.
To do this I wrote the code:
DoCmd.TransferDatabase acExport, "Microsoft Access", _
BEPath & "Myfile.mdb", acTable, _
TableRef, TableNew, False
CurrentDb.TableDefs(TableNew).RefreshLink
The first line is suposed to create the copy, but it only places a link to
TableRef named TableNew, instead of creating an entirely new table.
Since the table does not exist, the refreshlink action does not work either.
Ideas?
multiple language capabilities.
I stored the captions in a table in the BE database for each language
(English, spanish, and Portuguese).
To create a new language (there is interest to use the application in Europe
too), I need to create a new table (TableNew) from one of the existing
languages (TableRef) to translate.
To do this I wrote the code:
DoCmd.TransferDatabase acExport, "Microsoft Access", _
BEPath & "Myfile.mdb", acTable, _
TableRef, TableNew, False
CurrentDb.TableDefs(TableNew).RefreshLink
The first line is suposed to create the copy, but it only places a link to
TableRef named TableNew, instead of creating an entirely new table.
Since the table does not exist, the refreshlink action does not work either.
Ideas?