"Class1.cs" By gando (https://pastebin.com/u/gando) URL: https://pastebin.com/bcxPrtLU Created on: Saturday 15th of October 2011 07:38:04 AM CDT Retrieved on: Saturday 31 of October 2020 07:57:46 AM UTC using System; using System.Windows.Forms; public class VerticalProgressBar : ProgressBar { protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.Style |= 0x04; return cp; } } }