Click here to Skip to main content
16,004,587 members

Comments by dudefromthebronx (Top 2 by date)

dudefromthebronx 12-Feb-15 19:57pm View    
In other words, I could write the code for deleting the image from the picturebox like this:

private void btnClearAnswerResponseImage_Click(object sender, EventArgs e)
{
if (pbTitlePageImage.Image != null)
pbTitlePageImage.Image.Dispose();
pbAnswerResponseImage.Image = null;
}

And this code would not only delete the image from the picturebox, but also delete its memory stream from the computer's memory, correct?
dudefromthebronx 30-Aug-13 12:04pm View    
I need help reading the lines from the textbox and then writing them to a binary file