Thread: displaying image

  1. #1
    Registered User
    Join Date
    Apr 2008
    Posts
    58

    displaying image

    hi,
    i have a lots of picture.
    i'm going to develop one application by c#.
    when clicking the "play" button, i wanna see the these images in this program.
    how can i do it?
    can u suggest to me hint?
    or can u show me snippet code?
    regards
    so

  2. #2
    Registered User
    Join Date
    Apr 2008
    Posts
    58
    in other words, i tried to save some photos through ip camera.
    so i need to see these photos again when clicking "play" button.
    i dont know how to fix it.
    thx

  3. #3
    Registered User
    Join Date
    Mar 2009
    Location
    england
    Posts
    209
    Well you could make your own custom display control, but the simplest solution would be to use a picture box.

    Code:
    pictureBox1.Image = new Bitmap("path to image file");

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Displaying an Image with C++
    By mmarab in forum C++ Programming
    Replies: 8
    Last Post: 04-08-2011, 02:30 PM
  2. Problem reading tiff image files?
    By compz in forum C++ Programming
    Replies: 9
    Last Post: 10-30-2009, 04:17 AM
  3. Displaying an Image
    By evanman in forum C++ Programming
    Replies: 3
    Last Post: 07-07-2006, 01:04 PM
  4. Button Displaying Image
    By mrafcho001 in forum Windows Programming
    Replies: 4
    Last Post: 12-03-2005, 02:14 PM
  5. Displaying a PNG image
    By grep in forum Windows Programming
    Replies: 5
    Last Post: 07-07-2005, 08:27 PM