Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/03/2011, 22:10
icnovaro
 
Fecha de Ingreso: enero-2010
Mensajes: 5
Antigüedad: 15 años
Puntos: 0
Respuesta: Acceder a elementos de un Windows Form

jeje, ya lo resolvi.

Código C#:
Ver original
  1. foreach (Control control in groupBox1.Controls)
  2.             {
  3.                    if(control is ComboBox)
  4.                    {
  5.                        MessageBox.Show(control.Text);
  6.                    }
  7.  }
  8.  
  9. //si el ComboBox esta dentro de un groupBox, si no seria:
  10.  
  11. foreach (Control control in this.Controls)
  12.             {
  13.                    if(control is ComboBox)
  14.                    {
  15.                        MessageBox.Show(control.Text);
  16.                    }
  17.  }