Facultad de Ingeniería de Sistemas: Form1 Object Eventargs
Facultad de Ingeniería de Sistemas: Form1 Object Eventargs
Facultad de Ingeniería de Sistemas: Form1 Object Eventargs
1. Realizar un programa que solicite la edad del usuario y que transforme esa
edad en meses:
2. Realizar un programa que solicite el ingreso de dos números y que indicar cual
es el mayor, considerar también cuando los números son iguales:
If N1 = N2 Then
TextBox1.Text = (" LOS NUMEROS SON IGUALES")
End If
End Sub
End Class
If NumericUpDown1.Text = 0 Then
TextBox1.Text = 0
End If
If NumericUpDown1.Text = 1 Then
TextBox1.Text = ("I")
End If
If NumericUpDown1.Text = 2 Then
TextBox1.Text = ("II")
End If
If NumericUpDown1.Text = 3 Then
TextBox1.Text = ("III")
End If
If NumericUpDown1.Text = 4 Then
TextBox1.Text = ("IV")
End If
If NumericUpDown1.Text = 5 Then
TextBox1.Text = ("V")
End If
If NumericUpDown1.Text = 6 Then
TextBox1.Text = ("VI")
End If
If NumericUpDown1.Text = 7 Then
TextBox1.Text = ("VII")
End If
If NumericUpDown1.Text = 8 Then
TextBox1.Text = ("VIII")
End If
If NumericUpDown1.Text = 9 Then
TextBox1.Text = ("IX")
End If
If NumericUpDown1.Text = 10 Then
TextBox1.Text = ("X")
End If
End Sub
End Class
Desarrollo de Programas
Codificacion:
End Sub
TextBox1.Text = "PIERO"
TextBox2.Text = " LAURA SOTO"
TextBox3.Text = "VIVE EN EL TAMBO . POR EL PARQUE INFANTIL "
TextBox4.Text = "******"
End Sub
PRACTICA DE CONTROLES
Problema 1:
If RadioButton5.Checked Then
ListBox1.BackColor = Color.DarkBlue
End If
If RadioButton6.Checked Then
ListBox1.BackColor = Color.Yellow
End If
End Sub
If RadioButton5.Checked Then
ListBox1.BackColor = Color.DarkBlue
End If
If RadioButton6.Checked Then
ListBox1.BackColor = Color.Yellow
End If
End Sub
If RadioButton5.Checked Then
ListBox1.BackColor = Color.DarkBlue
End If
If RadioButton6.Checked Then
ListBox1.BackColor = Color.Yellow
End If
End Sub
End Class
End Sub
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button4.Click
Dim X As String
X = "IDTRASPASAR"
ListBox2.Items.Add(X)
End Sub
End Class