Returns the output data source object.
Function GetOutputDS( reserved )
string reserved - reserved for future use (optional, default = "").
object - an output data source object, see data source for details.
An exception is thrown in case of errors.
Dim TextConverter, DS
Set TextConverter = CreateObject( "ConverterX.ConverterX.1" )
TextConverter.OpenProject( "C:\data\Test.ConverterX" )
Set DS = TextConverter.GetOutputDS()
DS.SetDS( "c:\data\output.dbf" )
TextConverter.Convert()Â
TextConverter.SaveProject( "C:\data\Test.ConverterX" )