Public Class Form1
Dim hour As Single
Dim sec As Single
Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles RadioButton1.CheckedChanged
Label2.Text = "The time in minute format is:"
sec = TextBox1.Text
Label3.Text = sec * 60
Label4.Text = ""
End Sub