Title: [C#] Class1.cs Author: gando Pastebin link: http://pastebin.com/bcxPrtLU First Edit: Saturday 15th of October 2011 07:38:04 AM CDT Last Edit: Saturday 15th of October 2011 07:38:04 AM CDT using System; using System.Windows.Forms;   public class VerticalProgressBar : ProgressBar {     protected override CreateParams CreateParams     {         get         {             CreateParams cp = base.CreateParams;             cp.Style |= 0x04;             return cp;         }     } }