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; namespace Core.LZMes.Client.UIM.UIM05 { public partial class UIM050011 : FrmBase { private string _STYPE = ""; public UIM050011(string stype) { _STYPE = stype; InitializeComponent(); } private void UIM050011_Load(object sender, EventArgs e) { CoreClientParam ccp = new CoreClientParam(); ccp.ServerName = "UIM.UIM05.UIM050010"; switch (_STYPE.ToString()) { case "PLTCM": ccp.MethodName = "getPltcmInfo"; break; case "CAL": ccp.MethodName = "getCalInfo"; break; case "RCL": ccp.MethodName = "getRclInfo"; break; default: return; break; } ccp.SourceDataTable = dataSet1.Tables[0]; this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal); } } }