Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7917407
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T15:08:03+00:00 2026-06-03T15:08:03+00:00

I have a c# application which shows images in a form. I’m trying to

  • 0

I have a c# application which shows images in a form. I’m trying to overwrite these images and regenerate them. I get an exception while I’m trying to delete an existing image (it’s a png in this case). I tried disposing the image that the picturebox is using and then setting it to null, but I still get an exception due to a sharing violation. Nevertheless, I can go to explorer and delete the file without any problem.

In trying to figure out what process has this image locked, Process Monitor tells me it’s the vhost.exe which is hosting my application.

How can I get around this? Is there some way I can get the host to release the lock on the file so that I can delete/recreate it? Ultimately I have large number of images which are generated as thumbnails which would need updating anytime my database incurs changes which affect the graphics. I’d hate to think I need to call a command shell to do this.

Thanks for any advice.

Gary

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T15:08:05+00:00Added an answer on June 3, 2026 at 3:08 pm

    You can try loading images using file streams and closing them after reading.

    FileStream fileStream = new FileStream("ImageName.jpg", FileMode.Open, FileAccess.Read);
    yourPictureBox.Image = Image.FromStream(fileStream);
    fileStream.Close();
    

    Or instead of explicitly closing; you can employ using statement;

    using(FileStream fileStream = new FileStream("ImageName.jpg", FileMode.Open, FileAccess.Read))
    {
        yourPictureBox.Image = Image.FromStream(fileStream);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a C# application which shows the current time in a transparent .NET
I have a xPage application which shows list of emails of the currently logged
Hi I have a page in my java/jsp based web application which shows list
In my application, I have a 'logging' window, which shows all the logging, warnings,
I have an application which loads up c# source files dynamically and runs them
I have an application which needs to display around 50 images saved in the
I have an activity which shows 3 random images from JSON data off the
I have an iPad application which has many categorized images I need to switch
I have created a simple grid which shows different images with an edit option.
I write an application with Symfony 2. I have a form which has a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.