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

  • Home
  • SEARCH
  • 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 8582191
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T21:13:55+00:00 2026-06-11T21:13:55+00:00

I need to show some images periodically in a Windows form application. The source

  • 0

I need to show some images periodically in a Windows form application. The source of the image is a fixed URL link. The image in the link is updated every day automatically. What I need is to make my application have the ability to refresh the image every day automatically. How can I do this in C++/CLI or C#? I would like to mention also that I have to pass through a proxy IP & port in order to access the Internet (the link).

  • 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-11T21:13:56+00:00Added an answer on June 11, 2026 at 9:13 pm

    Assuming its a picturebox:

    private void PopulatePictureBox()
    {
     ImageList images = new ImageList();
     images.Images.Add(LoadImage("http://www.website.com/123.jpg"));
     picbox.Image = imagelst.Images[0];
    }
    

    Assuming its a listView control:

    private void PopulateListView()
    {
        ImageList images = new ImageList();
        images.Images.Add(LoadImage("http://www.website.com/123.jpg"));
        images.Images.Add(LoadImage("http://www.website.com/456.jpg"));
    
        listView1.SmallImageList = images;
        listView1.Items.Add("An item", 0);
        listView1.Items.Add("Another item item", 1);
    }
    

    This the function to get the image from the web:

    private Image LoadImage(string url)
    {
        System.Net.WebRequest request =
            System.Net.WebRequest.Create(url);
    
        System.Net.WebResponse response = request.GetResponse();
        System.IO.Stream responseStream =
            response.GetResponseStream();
    
        Bitmap bmp = new Bitmap(responseStream);
    
        responseStream.Dispose();
    
        return bmp;
    }
    

    Not sure if you wish to save the picture to disk, I’ll leave that option up to you.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I display set of images(small). I need to show the larger image(300*300) at some
I need to show for every link, dynamically some text with Java-Script (jQuery). The
I have a few images with some text, I need to show the image
I need to create a slide show of some images that can go full
I've been googling this for long time! I need to show images on some
I am developing one Blackberry application using Eclipse, I need to show images in
I need to display some images which can be scrolled horizontally. Only one image
I got a web application, in which there are some images. Will show a
in a database there are some images [of unknown number], i need to show
I need to show multiple images in one window and directly select one image

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.