CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Image Browser

  1. #1
    Join Date
    Nov 2011
    Posts
    1

    Exclamation Image Browser

    Hi guys

    This is my project and im finding it very hard to do. please please any 1 help me out cz its due in 5days plzzzz...

    thanks cheers



    Project Specification

    Create a Windows application that will display jpg images from a digital camera. The application has a fixed base folder (eg My Documents\Pictures\Camera). It has twenty PictureBox components with twenty Labels and twenty TextBoxes (one label and textbox under each picture box).

    Images are imported into the base folder by selecting the import menu option. A browse for file dialog box will be displayed which will allow the user to choose one or more files from the camera’s memory card. These files will then be copied into the base folder.

    The first twenty images in the base folder will be displayed in the picture boxes. The file name and creation date and time of each image will be displayed in the label under each picture box. Any keywords the user has entered about an image are displayed in the text box under the picture box. Keywords are to be saved in a database using LINQ so that they can be restored the next time the image is displayed. You will obviously need to save the filename with the keywords so that you can determine which keywords belong to which image.

    Next and Previous buttons will load the next twenty and previous twenty images respectively.

    To simulate the camera’s memory card you should use a USB memory stick with some images loaded onto it.

  2. #2
    Join Date
    Jan 2002
    Location
    Scaro, UK
    Posts
    5,940

    Re: Image Browser

    Doing this in WPF is really easy. There's lots of examples on the net as well - see here..

    Darwen.
    www.pinvoker.com - PInvoker - the .NET PInvoke Interface Exporter for C++ Dlls.

  3. #3
    Join Date
    Dec 2008
    Posts
    144

    Re: Image Browser

    I'm guessing that you're a student and that this is a homework project. We'll point you in the right direction but we're not going to give you the answers.

    Darwen has given you a good resource you can learn from. Also, please post any specific questions you have- be sure to tell us what you have tried since this is homework so we can point you in the right direction.
    Code:
    if (Issue.Resolved)
    {
         ThreadTools.Click();
         MarkThreadResolved();
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured