I have a Panel im my program and I was wondering how i can make it hideable. I want to have the small triangle in the dividerbar so that when u click on it, it auto hides.
QWERTYtech
Visual Basic General
I have a Panel im my program and I was wondering how i can make it hideable. I want to have the small triangle in the dividerbar so that when u click on it, it auto hides.
QWERTYtech
I used radio button but you could do the same thing using button with image (Small Triangle)....
Private sub Radiobutton1_Click(byval.......................... the click event
me.panel1.visable = false
me.radiobutton2.visable = true 'Made this visable so the user can click on it to make it reappear... in your case just change the image to show the pannel holds some thing...
end sub
Private sub radiobutton2_click( ..................... other click event
me.panel1.visabe = true
me.radiobutton2.visable = fales
end sub
Easyest way is to add a button with image and no text..... To make it look Pro add a groupbox inside the panel with the button out side the groupbox...