I create a Form in Visual Studio that contains many fields to display; the fields need extra area (larger than screen size).
I am trying to resize the Form but it prevents me from doing it.
I tried to add a vertical Scrollbar but also didn't work.
Note that I want to add a new Scrollbar to my Form and change its color, not activate the default Scrollbars.
private void Form1_Load(object sender, EventArgs e)
{
VScrollBar vScroller = new VScrollBar();
vScroller.Dock = DockStyle.Right;
vScroller.Width = 30;
vScroller.Height = 200;
vScroller.Name = "VScrollBar1";
this.Controls.Add(vScroller);
}