im trying to use frames to create a video in the windows form application everything works if the first FOR is <10, if is > to 10 an error appears saying "FileNotFoundEx ception was unhandled". i need serious help, and if there is a way to use another type of extension(examp le:flv,wmv,tiff ) please help me too with that. thanks ;)
Code:
Image[] images = new Image[2003];
for (int i = 1; i < 2004; i++)
{
images[i] = Image.FromFile(@"C:\New folder (6)\000" + i +".jpg");
this.BackgroundImage = images[i];
}
Comment