コード例 #1
0
        public QueryCriteria(Channel channel)
        {
            InitializeComponent();
            ComboxLoader.LoadOleDBType(this.enumCmbbxThirdPartyFieldType);

            channelForm  = channel;
            type         = "Add";
            this.Text    = "Add Parameter";
            criteriaItem = new SQLInQueryCriteriaItem();
        }
コード例 #2
0
        public QueryCriteria(Channel channel, int index)
        {
            InitializeComponent();
            ComboxLoader.LoadOleDBType(this.enumCmbbxThirdPartyFieldType);

            channelForm  = channel;
            type         = "Edit";
            this.Text    = "Edit Parameter";
            criteriaItem = channel.criteriaItemList[index];

            ShowInformation();
        }
コード例 #3
0
        public QueryResult(Channel channel)
        {
            InitializeComponent();
            GetLUTTables();
            ComboxLoader.LoadOleDBType(this.enumCmbbxThirdPartyFieldType);

            channelForm = channel;
            type        = "Add";
            resultItem  = new SQLInQueryResultItem();
            this.Text   = "Add Mapping Item";

            GetGCFieldSet(channel.resultItemList);
        }
コード例 #4
0
        public QueryResult(Channel channel, int index)
        {
            InitializeComponent();
            GetLUTTables();
            ComboxLoader.LoadOleDBType(this.enumCmbbxThirdPartyFieldType);

            channelForm = channel;
            type        = "Edit";
            this.Text   = "Edit Mapping Item";
            resultItem  = channel.resultItemList[index];

            resultIndex = index;

            GetGCFieldSet(channel.resultItemList);
            ShowInformation();
        }