InfoConnect for Airlines VBA Guide
TransferAutoDetectScanExtensionList Property
Returns or specifies file extensions for InfoConnect to scan when trying to determine a suitable file type for file transfers using the Auto-Detect transfer feature.
Syntax
Object.TransferAutoDetectScanExtensionList As String
Remarks
The following example tells InfoConnect to scan all files with .BAK file extensions and all files with no file extension.

FileTransfer.TransferAutoDetectScanExtensionList = "bak,<>"

If you want InfoConnect to scan all files whose extensions have not been linked to a particular transfer type, use TransferAutoDetectDefaultType.

To link file extensions to other transfer types, use TransferAutoDetectASCIIExtensionList, TransferAutoDetectBinaryExtensionList, and TransferAutoDetectImageLabelsExtensionList.

The default value is "". Use "<>" to specify files with no file extension. Use commas to separate file extensions included in the string. Do not include periods with the file extensions. The string can be up to 259 characters long.

See Also