Hi, I'm writing this little image browser written in C# with a file rename feature. Trouble is that when I try to rename the file that's displayed I get an error with a message that the picture file is being used by a process.
So I thought that I should show you the method that displays the image in a picture box and displays some information about it inside a label.
{
currentImagePath = path;
pictureBox1.SizeMode =
pictureBox1.Image =
label1.Text =
}
Is the culprit here?
Thanks, Henri