xx软件系统方案及重点
百度文库使用方法
http://139.224.236.108/
您购买的订单号:92499149622494972
用户:mnh2wt密码:kqgsp
#调用DLL方法,以及参数赋值
//try
//{
// Type type = Assembly.LoadFrom("TrackCustomer.dll").GetType("TrackCustomer.FrmReturnVisitCustomerInfo");
// object[] objArray = new object[] { this };
// object obj = type.GetMethod("CreateInstance").Invoke(null, objArray);
// type.InvokeMember("StrTID", BindingFlags.SetProperty, null, obj, new object[] { string.Concat(this.dg.Rows[this.trackCurRowIndoex].Cells["zzhfid"].Value.ToString(), ",add") });
// MethodInfo method = type.GetMethod("Show", new Type[0]);
// method.Invoke(obj, new object[0]);
// type.InvokeMember("WindowState", BindingFlags.SetProperty, null, obj, new object[] { FormWindowState.Maximized });
// method = type.GetMethod("BringToFront", new Type[0]);
// method.Invoke(obj, new object[0]);
//}
//catch (Exception exception1)
//{
// Exception exception = exception1;
// using (MyMsgbox myMsgbox = new MyMsgbox())
// {
// myMsgbox.Show(exception.Message, "错误", MsgFace.Fail);
// }
//}
FrmReturnVisitCustomerInfo frm = FrmReturnVisitCustomerInfo.CreateInstance(this);
frm.StrRID = string.Concat(this.dg.Rows[this.trackCurRowIndoex].Cells["zzhfid"].Value.ToString(),",add");
frm.Show();
frm.WindowState = FormWindowState.Maximized;
frm.BringToFront();
Toad for SQL Server
wireshark