Form1 Object Eventargs

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

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

You might also like