Sets the array with data for the preview.

Syntax:

SetPreviewArray(Array As Variant)
Parameters: Array 2-dimensional array with elements of type Variant filled with the preview data.

Example:
Dim Ary() As Variant

Dim Wiz As New ExportWizard

' initialize wizard
[...]

' redim dynamically
ReDim Ary(39,4)

' fill array
[...]

Call Wiz.SetPreviewArray(Ary)

Remarks: The elements of the array should of type Variant.

See also:

Class ExportWizard


Last Updated: 07/26/05