A TYPE to control user options. Please add anything you think should be there or that I've left out (dendrons, you know)
So far they're T/F or 0/1 members, most drawn from the VB code. the LineByLine members are user-selected.
The PrivateModule is an advanced option used only in multi host/server environments, but since it's there we should probably deal with it. There's no equivalent in PB, it's a VS thing, I think.
Stan

Code:
TYPE ConverterOptionsType DefaultArrayBase AS LONG '0 or 1 CaseInsensitiveCompare AS LONG '%False = Normal PBWin compare, %True = case insensitive compare (UCASE$ required) DimAll AS LONG '%False = OPTION EXPLICIT not present in VB code, %True = present PrivateModule AS LONG '%False = OPTION PRIVATE MODULE not present in VB coe, %True = present LineByLineProgress AS LONG '%True = user selected, %False = very fast, if any updates LineByLineEdit AS LONG '%True = user selected 1 at a time END TYPE
Stan
Comment