安装包是可以用的(其它机器也可以用),就是卸载不了 报错信息如下: Error1001,在卸载的过程中发生异常。将忽略该异常并继续卸载。 
但是,在卸载完成后应用程序可能未完全卸载。 
--Cannot remove the security policy --错误:无效的标签和名称 

解决方案 »

  1.   

     //Form1中
            private void button1_Click(object sender, EventArgs e)
            {
                Form2 f = new Form2();
                f.Owner = this;
                f.Show();
            }        public void getDataFromAddress(ArrayList al)
            {
                for (int i = 0; i < al.Count; i++)
                {
                    string[] data = al[i].ToString().Split(';');
                    dataGridView2.Rows.Add();
                    dataGridView2.Rows[i].Cells[0].Value = true;
                    dataGridView2.Rows[i].Cells[1].Value = data[0];
                    dataGridView2.Rows[i].Cells[2].Value = data[1];
                }
            }