Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/05/2011, 21:17
Avatar de lair
lair
 
Fecha de Ingreso: enero-2009
Ubicación: header('Location: Morelia");
Mensajes: 1.052
Antigüedad: 15 años, 3 meses
Puntos: 46
Respuesta: llevar DATOS DE UN ListBox1 A UN LABEL EN C#

Hola.

prueba con algo como esto:
Código C#:
Ver original
  1. foreach (String i in this.listBox1.Items) {
  2.     label1.Text +=i+ " ";
  3. }

Suerte.