Returns the array of languages to be exported.

Syntax:

GetLanguagesArray(Array As Variant)
Parameters: Array Array with the language codes of the languages to be exported.

Example:
Dim AryLangs() As Variant
Dim Wiz As New ExportWizard

' initialize wizard
[...]

If (Wiz.Show) Then
	Call Wiz.GetLanguagesArray(AryLangs)
	' more actions
	[...]
End If
Remarks: The parameter array has to be declared as an empty dynamic array.

See also:

Class ExportWizard


Last Updated: 07/26/05