Cita de: luis456 en 6 Febrero 2014, 20:09 PMCódigo (vbnet,3,8) [Seleccionar]For X As Integer = 0 To Elementos.Count - 1 Step 4
MessageBox.Show(
String.Format("{0} {1} {2} {3}",
Elementos(X),
If(Not (X + 1) >= Elementos.Count, Elementos(X + 1), String.Empty),
If(Not (X + 2) >= Elementos.Count, Elementos(X + 2), String.Empty),
If(Not (X + 3) >= Elementos.Count, Elementos(X + 3), String.Empty), "Cuatro Elementos"))
Next X
Fíjate bien en los cambios, esto puedes hacerlo sin ayuda
Código (vbnet,3,8) [Seleccionar]
For X As Integer = 0 To Elementos.Count - 1 Step 4
ListBox1.Items.Add(
String.Format("{0} {1} {2} {3}",
Elementos(X),
If(Not (X + 1) >= Elementos.Count, Elementos(X + 1), String.Empty),
If(Not (X + 2) >= Elementos.Count, Elementos(X + 2), String.Empty),
If(Not (X + 3) >= Elementos.Count, Elementos(X + 3), String.Empty)))
Next X
Saludos!