在调用PopForm时,把Form1的this传送过去,如
PopForm pf=new PopForm(this);
pf.show();
在PopForm的构造函数中,
public CheAcc(Form1 frm)
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
parentForm=frm;
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
在PopForm类的开始
private Form1 parentForm;
然后
parentForm.comboBox1.Text=this.button.Name;

解决方案 »

  1.   

    http://expert.csdn.net/Expert/topic/2857/2857012.xml?temp=.8245508
      

  2.   

    同意 shuliangqing(天刀宋缺) 
    另请参见
    两个窗体之间传值:
    http://www.lzhm.net/read.aspx?ID=57http://www.lzhm.net/Read.aspx?ID=21
      

  3.   

    http://expert.csdn.net/Expert/TopicView1.asp?id=2852296
    http://expert.csdn.net/Expert/topic/2805/2805078.xml?temp=.5712854
    http://expert.csdn.net/Expert/topic/2795/2795683.xml?temp=.5648767
    很多的。