Sets if the separator group box with the separator options should be visible or not. The "ShowSeparator" property must be set to "True" for the use of a separator.

Type Info:

ShowSeparator As Boolean
Example:
Dim Wiz As New ImportWizard
Dim Separator As String

' initialize wizard
[...]

Wiz.ShowSeparator = True
Wiz.Separator = ","

If (Wiz.Show) Then
	Separator = Wiz.Separator

	' more actions
	[...]
End If
Remarks: Write-only property.
See also:

Class ImportWizard

Last Updated: 07/26/05