Picture of a picture frame!

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Simon

    Picture of a picture frame!

    I'm trying to build an application which will allow users to view
    photographs in a variety of picture frames. I can load and display the
    photos, but I'm not sure where to begin when it comes to building and
    displaying the frames around the photos.

    I have photos of each of the frames I want to offer but am not sure how to
    use these images as the basis for creating the frame.

    Any pointers would be much apprecaited!

    Thanks

    ps VB6 by the way!


  • Martin

    #2
    Re: Picture of a picture frame!

    Sounds like a nice idea, Simon.

    And yes it should be fairly easy to do.

    Start with a PictureBox on your Form - this will be for the Picture Frame
    Add a second (smaller) PictureBox inside the first PictureBox - this is for
    the Photograph

    If all the Frames are the same size then there is not much to it, just
    programmaticall y through a menu system add/change frames and pictures.

    If the frames and pictures are of assorted sizes then you will/maybe need to
    add code to adjust the PictureBox sizes to suit your requirements.

    That should get you started.


    Regards

    Martin Double
    CADOSS

    Email: cadoss@btconnec t.com
    Web Site: http://home.btconnect.com/cadoss

    "Simon" <Simon@nospam.c om> wrote in message
    news:cu5sfs$8bi $1@titan.btinte rnet.com...[color=blue]
    > I'm trying to build an application which will allow users to view
    > photographs in a variety of picture frames. I can load and display the
    > photos, but I'm not sure where to begin when it comes to building and
    > displaying the frames around the photos.
    >
    > I have photos of each of the frames I want to offer but am not sure how to
    > use these images as the basis for creating the frame.
    >
    > Any pointers would be much apprecaited!
    >
    > Thanks
    >
    > ps VB6 by the way!
    >
    >[/color]


    Comment

    • Simon

      #3
      Re: Picture of a picture frame!

      Thanks for the hint Martin, I'l try that out!


      "Martin" <cadoss@btconne ct.com> wrote in message
      news:cu7i28$c3j $1@sparta.btint ernet.com...[color=blue]
      > Sounds like a nice idea, Simon.
      >
      > And yes it should be fairly easy to do.
      >
      > Start with a PictureBox on your Form - this will be for the Picture Frame
      > Add a second (smaller) PictureBox inside the first PictureBox - this is
      > for
      > the Photograph
      >
      > If all the Frames are the same size then there is not much to it, just
      > programmaticall y through a menu system add/change frames and pictures.
      >
      > If the frames and pictures are of assorted sizes then you will/maybe need
      > to
      > add code to adjust the PictureBox sizes to suit your requirements.
      >
      > That should get you started.
      >
      >
      > Regards
      >
      > Martin Double
      > CADOSS
      >
      > Email: cadoss@btconnec t.com
      > Web Site: http://home.btconnect.com/cadoss
      >
      > "Simon" <Simon@nospam.c om> wrote in message
      > news:cu5sfs$8bi $1@titan.btinte rnet.com...[color=green]
      >> I'm trying to build an application which will allow users to view
      >> photographs in a variety of picture frames. I can load and display the
      >> photos, but I'm not sure where to begin when it comes to building and
      >> displaying the frames around the photos.
      >>
      >> I have photos of each of the frames I want to offer but am not sure how
      >> to
      >> use these images as the basis for creating the frame.
      >>
      >> Any pointers would be much apprecaited!
      >>
      >> Thanks
      >>
      >> ps VB6 by the way!
      >>
      >>[/color]
      >
      >[/color]


      Comment

      Working...