Panels

  • Thread starter Thread starter Chuck Hecht
  • Start date Start date
C

Chuck Hecht

I am using 6-7 panels in my app and I have a issue with getting a panel to
act modal. I have tried a timer but that is not working. Does any one know
how I can get a panel to stop for user input then move on?

chuck
 
If you want to have the user only interact with a single Panel on a form
then you could temporarily disable all the other controls. Another option is
to use a form, shown using its ShowDialog method, that has its
FormBorderStyle set to None.
 
Back
Top