方法如下,两种,为了找这些东西真不容易呀
//--<方法一>----------------------------Form newfrm = null;
//将字符串类型的窗体名转换为窗体并SHOW出窗体
Type frm_type = Type.GetType("CopyERP." + ls_pgid);
newfrm = (Form)Activator.CreateInstance(frm_type);
newfrm.MdiParent = this;
newfrm.Show();
//--<方法二>----------------------------
//Form frm = new Form();
//frm = System.Reflection.Assembly.Load("CopyERP").CreateInstance("CopyERP." + ls_pgid) as Form;
//frm.MdiParent = this;
//frm.Show();
[[italic] 本帖最后由 freele_china 于 2007-12-19 15:49 编辑 [/italic]]
雁过留声,人过留名