I have managed to create the button but whenever i close the program and reload it the button and details are no longer there and it all needs to be created again. How can i set it to save the buttons details so they show up on next boot.
Here's the code to populate the button
Button BB = new Button();
BB.Location = new System.Drawing.Point(710,500);
BB.Name ="Button "
BB.Size = new Size(136,100);
BB.UseVisualStyleBackColor = true;
this.Controls.Add(BB);
MessageBox.Show("Button Created");