Code:
public void FadeForm() {
	Bitmap FadeBmp = new Bitmap(Settings[0] + "fade.jpg");
	ColorMatrix CMFade = new ColorMatrix();
	ImageAttributes AFade = new ImageAttributes();
												
	FadeBox = new PictureBox();
	FadeBox.Location = new Point(0,0);
	FadeBox.Size = new Size(this.Width,this.Height);
	FadeBox.Visible = false;
	this.Controls.Add(FadeBox);

	CMFade.Matrix33
...