|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Radio Button in Group BoxesIs there a group box property that tells you which radio button was clicked?
-- Helen "Helen Trim" <HelenT***@discussions.microsoft.com> schrieb: Add a common event handler to all the radio buttons which belong to a group:> Is there a group box property that tells you which radio button was > clicked? \\\ Private m_Group1SelectedRadioButton As RadioButton Private Sub RadioButtonGroup1_CheckedChanged( _ ByVal sender As Object, _ ByVal e As EventArgs _ ) Handles _ RadioButton1.CheckedChanged, _ RadioButton2.CheckedChanged, _ RadioButton3.CheckedChanged Dim SourceControl As RadioButton = DirectCast(sender, RadioButton) If SourceControl.Checked Then m_Group1SelectedRadioButton = SourceControl End If End Sub /// -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/>
INI or XML
Check if Stored Procedure already exists in Access Database? manged alternative to get the complete text from each open window Adding desktop shortcuts and start program entries WebBrowser control error ApplicationDomains Calculating Time in VB .Net Directinput How to use OCX? Dir Function just stopped working! |
|||||||||||||||||||||||