RC-WinTrans Object Model Help |
ImportMultipleTranslationsDialog.SetOriginalTexts
|
Sets the original source and target text.
Syntax: |
SetOriginalTexts( OriginalSourceText As String, OriginalTargetText As String ) |
| Parameters: |
OriginalSourceText The source text of the translation unit the import is performed for. OriginalTargetText The target text of the translation unit the import is performed for.
|
| Example: | Dim Dlg As New ImportMultipleTranslationsDialog
' initialize wizard
Call Dlg.SetOriginalTexts("&File", "")
Call Dlg.AddTranslation("File", "Datei")
Call Dlg.AddTranslation("F&ile", "D&atei")
' more initialization
[..]
If (Dlg.Show) Then
' take action
[...]
End If
|
See also: