Radio button, check box, List box

magpies18

Member
Joined
Oct 3, 2008
Messages
12
Programming Experience
Beginner
I have a question, lets say i 5 options from which the user will choose one and it later prints it out on an another form, for this case i use radio buttons, i will i make the choice display on the other form via label, so how to u do this?
 
VB.NET:
Private Sub RadioButtons_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles RadioButton1.CheckedChanged, RadioButton2.CheckedChanged
    otherForm.lblOption.Text = CType(sender, Control).Text
End Sub
 
Back
Top