在请问下vs中的print怎么用啊??我的只能生成,运行就出错??
[code] Private Sub pb1_Click(sender As Object, e As EventArgs) Handles picturebox1.Clicka = Val(TextBox1.Text)
b = Val(TextBox2.Text)
c = Val(TextBox3.Text)
If b < a Then
t = a
a = b
b = a
ElseIf c < a Then
t = a
a = c
c = t
ElseIf c < b Then
t = b
b = c
c = t
End If
Print(a, "<", b, "<", c)