A quick snippet I made to resize a form to the specified height at 416 max, 138 min. I use it for logins to show functions and what not.

PHP Code:
using System.Threading
PHP Code:
        private void Resize(Boolean Shrink)
        {
            if (
Shrink == false)
            { 
//GROWS!
                
while (this.Size.Height 416)
                {
                    
this.Size = new Size(this.Size.Widththis.Size.Height 1);
                    
Thread.Sleep(7);
                }
            }
            else
            { 
//shrinks =(
                
while (this.Size.Height 138)
                {
                    
this.Size = new Size(this.Size.Widththis.Size.Height 1);
                    
Thread.Sleep(7);
                }
            }
        }