Example #1
0
        public FQueryResult(FChannel frm, XCollection <FileInQueryResultItem> resultItems, int index)
        {
            InitializeComponent();
            parentlForm = frm;
            type        = "Edit";
            resultList  = resultItems;
            resultItem  = resultItems[index];
            GetLUTTables(FileInboundAdapterConfigMgt.FileInAdapterConfig.LookupTables);

            ShowResultItem();
        }
Example #2
0
        public FQueryResult(FChannel frm, XCollection <FileInQueryResultItem> resultItems)
        {
            InitializeComponent();
            parentlForm = frm;
            type        = "Add";
            resultList  = resultItems;
            resultItem  = new FileInQueryResultItem();
            resultItem.ThirdPartyDBPatamter.FieldType = OleDbType.VarChar; //Ini file, all field is varchar
            GetLUTTables(FileInboundAdapterConfigMgt.FileInAdapterConfig.LookupTables);

            ShowResultItem();
        }