using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using CoreFS.CA06; using Common; namespace Core.LZMes.Client.UIF { public partial class UIF041011 : CoreFS.CA06.FrmBase { public UIF041011() { InitializeComponent(); } private string _Condition; public string Condition { set { _Condition = value; CoreClientParam ccp = new CoreClientParam(); ccp.ServerName = "UIF.UIF04.UIF041011"; ccp.MethodName = "Query_HCoil_List"; ccp.ServerParams = new object[] { _Condition }; CoreClientParam obj = this.ExecuteQuery(ccp, CoreInvokeType.Internal); if (obj.ReturnInfo.Length == 0) { this.dataSet1.Tables["C_TBK02_COIL_COMM"].Clear(); System.Data.DataTable tab0 = FixDBManager.ConvertToDataTable(obj.ReturnObject as System.Collections.ArrayList, this.dataSet1.Tables["C_TBK02_COIL_COMM"]); tab0.TableName = "C_TBK02_COIL_COMM"; this.dataSet1.Tables["C_TBK02_COIL_COMM"].Merge(tab0); this.dataSet1.AcceptChanges(); } } } } }