cdoverlaw Posted October 12, 2003 Posted October 12, 2003 Private Sub CheckBox4_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox4.CheckedChanged XpePanel2.Visible = Not CheckBox4.Unchecked End Sub Whats wrong with this Quote
Administrators PlausiblyDamp Posted October 12, 2003 Administrators Posted October 12, 2003 What happens when it runs? Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
cdoverlaw Posted October 12, 2003 Author Posted October 12, 2003 it dosent run, its ment to make a panel not show when the checkbox is unchecked (it used to be it it showed when it was checked and that was fine but i would prefer it this way Quote
Leaders dynamic_sysop Posted October 12, 2003 Leaders Posted October 12, 2003 If CheckBox4.Checked Then XpePanel2.Visible = True Else XpePanel2.Visible = False End If '///// Or ..... If CheckBox1.CheckState = CheckState.Checked Then XpePanel2.Visible = True Else XpePanel2.Visible = False End If Quote
cdoverlaw Posted October 12, 2003 Author Posted October 12, 2003 thanks, why didnt i think of that :P, Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.