Codigo de Programacion de Cilindro
Codigo de Programacion de Cilindro
End Sub
End Sub
velocidadinicial = Val(TextBox1.Text)
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles
Button2.Click
REM aqui calculamos el tiempo de subida
Dim tiempodesubida, velocidadinicial, g As Single
g = 9.8
velocidadinicial = Val(TextBox1.Text)
tiempodesubida = velocidadinicial / g
TextBox4.Text = tiempodesubida
End Sub
velocidadinicial = Val(TextBox1.Text)
tiempodebajada = velocidadinicial / g
TextBox5.Text = tiempodebajada
End Sub
velocidadinicial = Val(TextBox1.Text)
tiempototal = 2 * velocidadinicial / g
TextBox6.Text = tiempototal
End Sub
velocidadinicial = Val(TextBox1.Text)
tiempo = Val(TextBox2.Text)