file.vb
Private Sub Command1_Click()
temp = Val(inputBox("Enter Temperature in celcius"))
Dim F As Integer
F = temp * 9 / 5 + 32
MsgBox ("Temp in F is "& F)
End Sub
Private Sub Command1_Click()
temp = Val(inputBox("Enter Temperature in celcius"))
Dim F As Integer
F = temp * 9 / 5 + 32
MsgBox ("Temp in F is "& F)
End Sub