怎么使用VB设计一个计算器

如何使用VB设计一个计算器?
如何使用VB设计一个计算器。我不会用VB。

 目的:输入A、B、C三个数,得到一个结果D

D=【(A-0.3)*(B-3)*(C-15)】/【(7.5-0.3)*(68-3)*(270-15)】


谢谢了,谁会的做个给我吧,谢谢了

------解决方案--------------------
VB code
Private Sub Command1_Click()
Dim D
D = ((Val(Text1) - 0.3) * (Val(Text2) - 3) * (Val(Text3) - 15)) / ((7.5 - 0.3) * (68 - 3) * (270 - 15))
Text4 = Format(D, "0.00")
End Sub

Private Sub Form_Load()
Text1 = ""
Text2 = ""
Text3 = ""
Text4 = ""
End Sub

------解决方案--------------------
探讨
VB codePrivateSub Command1_Click()Dim D
D= ((Val(Text1)-0.3)* (Val(Text2)-3)* (Val(Text3)-15))/ ((7.5-0.3)* (68-3)* (270-15))
Text4= Format(D,"0.00")End SubPrivateSub Form_Load()
Text1=""
Text2=""
Tex?-