Talk:Common Class/Notes
Jump to navigation
Jump to search
Sets the API's display language; errors and warnings returned by the Synthesis repository to the API will be displayed in the specified language.
Syntax
SynthesisAPI.SetLanguage(Language)
Parameters
Language
- Required. The display language. Can be any Language constant.
Example
This example assumes that a file called "RSRepository1.rsr10" exists in the C: drive. To demonstrate the method's functionality, the code deliberately returns an error message in Portuguese.
VBA 'Set the API's language to Portuguese Dim Lng As New cLanguage Lng.SetLanguage (Language_Portuguese) 'The following code will deliberately cause the connection to fail and return an error message. Dim MyRepository As New Repository Dim m As New cModel MyRepository.ConnectToAccessRepository("C:\RSRepositoryx122g3.rsr10")
VB.NET 'Set the API's language to Portuguese Dim Lng As New cLanguage Lng.SetLanguage (Language.Portuguese) 'The following code will deliberately cause the connection to fail and return an error message. Dim MyRepository As New Repository Dim m As New cModel MyRepository.ConnectToAccessRepository("C:\RSRepositoryx122g3.rsr10")