|    
			
				08/03/2007, 17:02
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: julio-2005 Ubicación: Jaltenco / DF 
						Mensajes: 1.723
					 Antigüedad: 20 años, 3 meses Puntos: 50 |  | 
  |  Re: Trabajando con Paneles  
  algo asi... 
Código:
  .
.
.
        private Form2 forma = new Form2();<<global para todos tus eventos de la clase Form1
        private void button2_Click(object sender, EventArgs e)
        {
            Button boton = new Button();
            boton.Height=100;
            boton.Width = 200;
            boton.Text ="Prueba";
            forma.Controls[0].Controls.Add(boton);
           // forma.Show();
        }
        private void button3_Click(object sender, EventArgs e)
        {
            forma.Show();
        }
    }
}
				__________________Mejoremos nuestro país, ayudemos al planeta... próximamente.
     |