miércoles, 12 de noviembre de 2008

CONVERSION DE UNIDADES

Private Sub Command1_Click()
Text2.Text = Val(Text1.Text) * (100)
End Sub

Private Sub Command2_Click()
Text3.Text = Val(Text1.Text) * (0.001)
End Sub

Private Sub Command3_Click()
Text4.Text = Val(Text1.Text) * (3.28084)
End Sub

Private Sub Command4_Click()
Text5.Text = Val(Text1.Text) * (0.393701)
End Sub

Private Sub Command5_Click()
Text1.Text = " "
Text2.Text = " "
Text3.Text = " "
Text4.Text = " "
Text5.Text = " "
End Sub

Private Sub Command6_Click()
End
End Sub

Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii <> 57 Then
KeyAscii = 0
End If
End Sub

Private Sub Text2_KeyPress(KeyAscii As Integer)
If KeyAscii <> 57 Then
KeyAscii = 0
End If
End Sub

Private Sub Text3_KeyPress(KeyAscii As Integer)
If KeyAscii <> 57 Then
KeyAscii = 0
End If
End Sub

Private Sub Text4_KeyPress(KeyAscii As Integer)
If KeyAscii <> 57 Then
KeyAscii = 0
End If
End Sub

Private Sub Text5_KeyPress(KeyAscii As Integer)
If KeyAscii <> 57 Then
KeyAscii = 0
End If
End Sub

No hay comentarios: