M
Mario Howard
When setting a subforms SourceObject in code to a Query
the query name string must be prefixed with "Query":
Me.Subform.SourceObject = "Query.qryMyQuery"
This will only work in an English version of Access 2000.
In a German version the syntax required is:
Me.Subform.SourceObject = "Abfrage.qryMyQuery"
In a French version the syntax required is:
Me.Subform.SourceObject = "Requête.qryMyQuery"
Does anyone know if there is a way to find out the local
version of an object name.
I do not want to have to "hard code" the local version
used of an object name.
Thanks
the query name string must be prefixed with "Query":
Me.Subform.SourceObject = "Query.qryMyQuery"
This will only work in an English version of Access 2000.
In a German version the syntax required is:
Me.Subform.SourceObject = "Abfrage.qryMyQuery"
In a French version the syntax required is:
Me.Subform.SourceObject = "Requête.qryMyQuery"
Does anyone know if there is a way to find out the local
version of an object name.
I do not want to have to "hard code" the local version
used of an object name.
Thanks