Multiplicar fracciones mixtas por numero entero Visual.Net
Tengo un problema al momento de multiplicar fracciones mixtas .
Tengo un textboxCANTIDAD (el cual a veces se ingresan datos de tipo entero o fracciones mixtas) el cual se debe multiplicar por textboxPRECIOUNITARIO (tipo entero) y colocar el resultado en textboxPRECIONETO. Posteriormente agregar a la base de datos (la cual esta en excel).
Mis líneas de código para el textboxCANTIDAD es la siguientes:
Private Sub TextBoxCANTIDAD_TextChanged(sender As Object, e As EventArgs) Handles TextBoxCANTIDAD.TextChanged Dim vardoble1 As Doublevardoble1 = CDbl(TextBoxCANTIDAD.Text) If TextBoxCANTIDAD.Text = "" Or TextBoxPRECIOUNITARIO.Text = "" Then Exit Sub End If Dim total As Integer = CInt(TextBoxCANTIDAD.Text) * CInt(TextBoxPRECIOUNITARIO.Text) TextBoxPRECIONETO.Text = total If IsNumeric(TextBoxCANTIDAD.Text) = False Then TextBoxCANTIDAD.Text = "" End If
1 Respuesta
Respuesta de Manuel Madrid
1