public QueryCriteria(Channel channel) { InitializeComponent(); ComboxLoader.LoadOleDBType(this.enumCmbbxThirdPartyFieldType); channelForm = channel; type = "Add"; this.Text = "Add Parameter"; criteriaItem = new SQLInQueryCriteriaItem(); }
public QueryCriteria(Channel channel, int index) { InitializeComponent(); ComboxLoader.LoadOleDBType(this.enumCmbbxThirdPartyFieldType); channelForm = channel; type = "Edit"; this.Text = "Edit Parameter"; criteriaItem = channel.criteriaItemList[index]; ShowInformation(); }
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); }
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(); }