Visual #2 (Ejercicios)
Visual #2 (Ejercicios)
Visual #2 (Ejercicios)
ESPERANZA
textBox1.Clear()
textBox1.Focus()
‘textBox1.Text = ""
6.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración
8.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración
ovalShape1.BackColor = Color.Red
Código Botón COLOR VERDE:
ovalShape1.BackColor = Color.Green
8.-Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración
7.-Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración
Practica # 5 rectangleShape y hScrollBar
Código hScrollBar1:
label1.Text = hScrollBar1.Value.ToString()
label2.Text = hScrollBar2.Value.ToString()
label3.Text = hScrollBar3.Value.ToString()
rectangleShape1.BackColor = Color.FromArgb(255, hScrollBar1.Value, hScrollBar2.Value, hScrollBar3.Value)
Código hScrollBar2:
label1.Text = hScrollBar1.Value.ToString()
label2.Text = hScrollBar2.Value.ToString()
label3.Text = hScrollBar3.Value.ToString()
rectangleShape1.BackColor = Color.FromArgb(255, hScrollBar1.Value, hScrollBar2.Value, hScrollBar3.Value)
Código hScrollBar3:
label1.Text = hScrollBar1.Value.ToString()
label2.Text = hScrollBar2.Value.ToString()
label3.Text = hScrollBar3.Value.ToString()
rectangleShape1.BackColor = Color.FromArgb(255, hScrollBar1.Value, hScrollBar2.Value, hScrollBar3.Value)
9.-Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración
19.-Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración
BOTÓN BORRAR
textBox1.Text=""
textBox2.Text=""
textBox3.Text=""
8.-Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
5.-Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
Practica # 11 TextBox, Label, Botones
End Sub
Practica # 11 MessagegBox, Botones, labels y textBox
7.- Hacer doble clic sobre el listBox y cambiar donde dice Changed por Clic:
Y escribir código:
switch (listBox1.SelectedIndex)
{
case 0:
this.BackColor = Color.Red;
MessageBox.Show("Señalaste el color Rojo", "Practica #10", MessageBoxButtons.OK, MessageBoxIcon.Information);
break;
case 1:
this.BackColor = Color.Blue;
break;
case 2:
this.BackColor = Color.Green;
break;
case 3:
this.BackColor = Color.Yellow;
break;
case 4:
this.BackColor = Color.Orange;
break;
case 5:
this.BackColor = Color.Pink;
break;
}
8.-Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
20.- Escribir código en el botón BORRAR de la Ficha CÍRCULO, haciendo doble clic sobre el:
this.textBox2.Clear();
this.label7.Text = "";
21.-Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
Practica # 14 Ciclo for
(TextBox labels y Botón Excepciones de error)
Código COMBOBOX:
int i, r, n;
n = int.Parse(this.comboBox1.Text);
for (i = 1; i <= 10; i++)
{
r = n * i;
listBox2.Items.Add(" " + n + " x " + i + " = " + r);
}
this.textBox1.Clear();
this.textBox2.Clear();
this.label1.Text = "";
this.label3.Text = "";
this.listBox1.Items.Clear();
this.listBox2.Items.Clear();
12.-Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
default:
label2.Text = "Mas probable que no este en la escuela";
break;
}
}
catch (Exception caught)
{
textBox1.Text = "";
this.label2.Text = caught.Message;
}
8.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
7.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
9.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
BOTÓN openFileDialog
BOTÓN saveFileDialog
9.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
8.- Añadir otro formulario al proyecto (Form2), menú Proyecto Agregar Windows Forms…
9.- En el segundo formulario agregar un botón (en la propiedad Text escribir REGRESAR).
10.- Escribir el siguiente código a los botones:
BOTÓN SALIR:
Application.Exit();
BOTÓN ENTRAR:
string usuario, contra;
usuario = txtusuario.Text.TrimEnd();
contra = txtcontra.Text.TrimEnd();
if (usuario=="informatica" && contra=="cecytes")
{
MessageBox.Show("Bienvenido al sistema");
timer1.Stop();
Form2 x = new Form2();
x.Show();
this.Hide();
}
else
{
MessageBox.Show("Acceso denegado");
txtusuario.Clear();
txtcontra.Clear();
}
11.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
9.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
Practica # 21 Sumatoria
(listBox, checkbox, Labels, TextBox y Botón)
9.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
Practica # 22 Factorial
(Label, TextBox y Botón)
8.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
9.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
Practica # 23 goto Tabla multiplicar (ciclo if)
(Label, TextBox y Botón)
BOTÓN BORRAR:
this.textBox1.Clear();
this.textBox2.Clear();
this.label1.Text = "ESCRIBE UN NÚMERO ENTERO";
this.textBox1.Focus();
7.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.
Practica # 24 Tabla multiplicar (ciclo while y do while)
(Label, TextBox y Botón)
try
{
int i, r, n;
n = int.Parse(this.textBox1.Text);
i = 1;
while (i <= 10)
{
r = n * i;
textBox2.Text = textBox2.Text + n + " x " + i + " = " + r + "\r\n";
i = i + 1;
}
}
catch (Exception caught)
{
textBox2.Clear();
this.label1.Text = caught.Message;
}
BOTÓN BORRAR:
this.textBox1.Clear();
this.textBox2.Clear();
this.label1.Text = "ESCRIBE UN NÚMERO ENTERO";
this.textBox1.Focus();
}
catch (Exception caught)
{
textBox2.Clear();
this.label1.Text = caught.Message;
}
7.- Correr el programa o iniciar la Depuración presionando la tecla F5 o haciendo clic en el botón Iniciar
Depuración.