Loads the project file data.

Syntax:

Load( SourceLanguage As String, TargetLanguage As String ) As Boolean
Return: Boolean
Parameters: SourceLanguage Source language to be loaded.
TargetLanguage Target language to be loaded.

Example:
Dim ProjFile As ProjectFile

Set ProjFile = Application.ActiveProjectFile

If (Not (ProjFile.IsLoaded)) Then
    ' load active source language and french as target language
    Call ProjFile.Load("", "fr")
End If

See also:

Class ProjectFile


Last Updated: 03/11/04