Enabling Radio Button

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • khizerbasith
    New Member
    • Feb 2008
    • 3

    Enabling Radio Button

    After disabling the radio buttons while the form is loaded i have written this code for button click but its not working any solutions...... .....

    [CODE=vbnet]Private Sub Button2_Click(B yVal sender As System.Object, ByVal e As System.EventArg s)
    RadioButton3.En abled = True
    RadioButton1.En abled = True
    RadioButton2.En abled = True
    RadioButton4.En abled = True
    RadioButton5.En abled = True
    RadioButton6.En abled = True
    RadioButton7.En abled = True
    End Sub[/CODE]

    Regards,
    khizer basith
    Last edited by Killer42; Mar 3 '08, 03:31 AM.
  • jamesd0142
    Contributor
    • Sep 2007
    • 471

    #2
    Try using the debug tool and step through the code... that way you can make sure its getting to the code.
    Regards,
    khizer basith [/QUOTE]

    Comment

    • Killer42
      Recognized Expert Expert
      • Oct 2006
      • 8429

      #3
      It would help if you give us more specific information than "not working". What, exactly, is it doing wrong? And what do you expect it to do?

      Comment

      Working...