VB学习第五周--数学函数应用

前端之家收集整理的这篇文章主要介绍了VB学习第五周--数学函数应用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

数学函数应用

Public Class Form1

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles TextBox1.TextChanged
        TextBox3.Text = Math.Sqrt(Val(TextBox1.Text) + Val(TextBox2.Text))
        TextBox4.Text = Fix(TextBox3.Text)
        TextBox5.Text = Math.Round(Val(TextBox3.Text),2)
    End Sub

    Private Sub TextBox2_TextChanged(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles TextBox2.TextChanged
        TextBox3.Text = Math.Sqrt(Val(TextBox1.Text) + Val(TextBox2.Text))
        TextBox4.Text = Fix(TextBox3.Text)
        TextBox5.Text = Math.Round(Val(TextBox3.Text),2)
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles MyBase.Load

    End Sub
End Class

原文链接:https://www.f2er.com/vb/259067.html

猜你在找的VB相关文章