How to minimize the panel when a check box is clicked

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nikl
    New Member
    • Sep 2014
    • 1

    How to minimize the panel when a check box is clicked

    How to minimize the panel when a check box is clicked here I am using an add handler I want the code the ??? mentioned place
    Attached Files
  • iam_clint
    Recognized Expert Top Contributor
    • Jul 2006
    • 1207

    #2
    Pseudo code
    Code:
     Private Sub MycheckboxCheckStateChanged(ByVal sender As checkbox, ByVal e As System.EventArgs)
       if (sender.checked) then 'checked
        'do stuff to your panel
       else 'unchecked
        'do stuff to your panel
       end if
    End Sub

    Comment

    Working...