Loads and opens a translation project by a given file name.
The project will be initialized for a target language existing in the project.

Syntax:

Application.OpenGetProject( projFile As String, Lang As String, Boolean openProjWindow ) As TranslationProject
Return: TranslationProject
Parameters:
projFile:  File name; the full path of the project file (.rwtproject) or database file (.fsmdb)

Lang: Target language; the language code of the target language.
  Can be an empty string to use a target language set as visible for the GUI.

openProjWindow: True ("1"); Opens a project window (GUI).

Example:
Dim Proj As TranslationProject
Set Proj = Application.OpenGetProject("MyProj.rwtproject", "de", False )

See also:

Class Application | Class TranslationProject


Last Updated: 03/20/21