Edwin08 | |
|
Re: Obtener un valor entre un rango determinado - 2009-09-28 23:15 - Respuesta 2
Bueno, yo te recomendaria que usaras la sentencia if.
por ejemplo... puedes colocar un command button.
y ahi le escribes
If Text1.Text < 500 Then
Text2.Text = 30
Else
If Text1.Text < 1000 Then
Text2.Text = 50
Else
If Text1.Text < 2000 Then
Text2.Text = 100
End If
End If
End If
espero que te ayude. cuando cliquees el command button, te revelara la cuota fija en el text 2
salu2 | |
|
|