vb小程序 谁能帮帮嘛
编一个华氏温度与摄氏温度之间转换的程序!要用转换公式F=9/5C+32C=5/9(F-32)谁编个发给我谢谢了jimna@163.com...
编一个华氏温度与摄氏温度之间转换的程序!要用转换公式F=9/5C+32 C=5/9(F-32)
谁编个发给我 谢谢了
jimna@163.com 展开
谁编个发给我 谢谢了
jimna@163.com 展开
2个回答
展开全部
给你来个更方便的,在文本框内容修改后就即时计算,其中的Bz变量是防止两个文本框重复调用的。(我已经调试通过)
Option Explicit
Dim Bz As Long
Private Sub Text1_Change()
If Bz = 0 Then Bz = 1
If Bz = 1 Then
Text2 = 9 / 5 * Val(Text1) + 32
Bz = 0
End If
End Sub
Private Sub Text2_Change()
If Bz = 0 Then Bz = 2
If Bz = 2 Then
Text1 = (Val(Text2) - 32) * 5 / 9
Bz = 0
End If
End Sub
Option Explicit
Dim Bz As Long
Private Sub Text1_Change()
If Bz = 0 Then Bz = 1
If Bz = 1 Then
Text2 = 9 / 5 * Val(Text1) + 32
Bz = 0
End If
End Sub
Private Sub Text2_Change()
If Bz = 0 Then Bz = 2
If Bz = 2 Then
Text1 = (Val(Text2) - 32) * 5 / 9
Bz = 0
End If
End Sub
展开全部
要使用转换的公式是:F=9/5*C+32
其中F为华氏温度,C为摄氏温度。
解答:
程序代码如下:
Private Sub Command1_Click()
If Text1.Text <> "" Then
Text2.Text = 9 / 5 * Text1.Text + 32
End If
End Sub
Private Sub Command2_Click()
If Text2.Text <> "" Then
Text1.Text = (Text2.Text - 32) * 5 / 9
End If
End Sub
其中F为华氏温度,C为摄氏温度。
解答:
程序代码如下:
Private Sub Command1_Click()
If Text1.Text <> "" Then
Text2.Text = 9 / 5 * Text1.Text + 32
End If
End Sub
Private Sub Command2_Click()
If Text2.Text <> "" Then
Text1.Text = (Text2.Text - 32) * 5 / 9
End If
End Sub
参考资料: http://www.bbtvu.ah.cn/jxfuwu/ZK/dzshw/%BC%EC%B2%E92005/vb/%C0%FD%CC%E2%BD%E2%CE%F6.htm
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询