Common Objects |
You can set output table using two methods: setting the table name (assuming you are connected to a database) - (a) and setting the entire data source - (b):If you are writing script outside TextConverter the API looks like this:
If you are writing script inside TextConverter it looks like this:
An Excel file is also considered as a database, so you can set the worksheet as: Set DS = TextConverter.GetOutputDS() DS.table = "worksheetname" ) ‘- (a) DS.SetDS( "...\file.mdb:worksheetname" ) ‘- (b) |