Watch this Video
800x600
Code for Temperature
Conversion Form Button(Result)
Private Sub Command1_Click()If Option1.Value = False And Option2.Value = False ThenMsgBox "Select Measurement", vbOKOnly, "Error"ElseIf Option1.Value = True Thentempout.Text = (Temptext * 9 / 5) + 32tempmeasur.Text = "Fahrenheit"ElseIf Option2.Value = True Thentempout.Text = (Temptext - 32) * 5 / 9tempmeasur.Text = "Celsius"End IfEnd Sub ...