Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: luis456 en 19 Abril 2015, 18:28 PMrepiten los resultados
01 02 03 04 05 06 07 08 09 10
01 02 03 04 05 06 07 08 09 10
01 02 03 04 05 06 07 08 09 10
01 02 03 04 05 06 07 08 09 10
01 02 03 04 05 06 07 08 09 10
01 02 03 04 05 06 07 08 09 10
CitarCómo saben los requisitos de los programas?
Dim lbs As ListBox() = {ListBox2, ListBox3, ... ListBox60}
For Each lb As ListBox In lbs
ListBox1.Items.Add(String.Join(" "c, lb.Items.Cast(Of String)))
Next lb
Dim lbs As ListBox() = {ListBox2, ListBox3, ... ListBox60}
For Each lb As ListBox In lbs
ListBox1.Items.AddRange(lb.Items)
Next lb
Cita de: Kaxperday en 17 Abril 2015, 20:47 PMes horrible programar para archivos en C#, luego se quejan de C.
string themFilepath = Path.Combine(dirPath, "Temas.txt");
string respFilepath = Path.Combine(dirPath, "Respuestas.txt");
string themLine = string.Empty;
string respLine = string.Empty;
StreamReader themSR = new StreamReader(themFilepath);
StreamReader respSR = new StreamReader(respFilepath);
while (!(themSR.EndOfStream)) {
themLine = themSR.ReadLine;
respLine = respSR.ReadLine;
// ...
}