62,267
社区成员
发帖
与我相关
我的任务
分享
Private Sub TextBox10_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox10.TextChanged
TextBox8.Text = Val(TextBox7.Text) * Val(TextBox10.Text)
End Sub
double d1 = double.Parse(unit.Text);
double d2 = double.Parse(price.Text);
double d3 = d1 * d2;
amount.Text = d3.ToString();