Return the array of column positions of the state data to export

Syntax:

GetStatePositionsArray(Array As Variant)
Parameters: Array Array with the column positions of the state data to be exported.

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

' initialize wizard
[...]

If (Wiz.Show) Then
	Call Wiz.GetNotePositionsArray(AryStatesPos)
	' more actions
	[...]
End If
Remarks: The column order starts with the position number 1.

The parameter array has to be declared as an empty dynamic array.

See also:

Class ExportWizard


Last Updated: 07/26/05