FNC WC - BarcodeDecoder - BarcodeType runtime selection

okay, I think I found out why the routine above does not work. The list is ordered differently in the type section versus what is listed in the Object Inspector's because I created the list in the order I saw in the Object Inspector. I just need to change it in the order to the one listed below:

type
  TTMSFNCWXBarcodeDecoderType = (bdtCode128, bdtEAN, bdtEAN8, bdtCode39,
    bdtCode39Vin, bdtCodabar, bdtUPC, bdtUPCE, bdtI2Of5, bdt2Of5, bdtCode93,
    bdtCode32);

I will revise the list and give an update here.