Results 1 to 5 of 5

Thread: [RESOLVED] Restricting a picture box size to the form size.

  1. #1

    Thread Starter
    Hyperactive Member stilekid007's Avatar
    Join Date
    Apr 2005
    Location
    DUDE! I'm your neighbor! HELLO!!!
    Posts
    388

    Resolved [RESOLVED] Restricting a picture box size to the form size.

    Hello,

    I have form and a pic box on that. Now I have auto resize set to True. But if the picture is bigger than the form part of the picture gets lost behind the form. Is there any way to make the picture box only go so big but still have the auto size on true?

    Thank you for your help and have a great day!
    Stilekid007

  2. #2
    Fanatic Member Nove's Avatar
    Join Date
    Jul 2004
    Posts
    736

    Re: restricting a picture box size to the form size.

    Yeah, in the picbox_resize event...

    VB Code:
    1. if picbox.width > me.width then picbox.width = me.width
    2. if picbox.height > me.height then picbox.height = me.height

    Try that, replacing picbox with the picturebox's actual name of course.

  3. #3
    Super Moderator manavo11's Avatar
    Join Date
    Nov 2002
    Location
    Around the corner from si_the_geek
    Posts
    7,171

    Re: Restricting a picture box size to the form size.

    Do you want to make the form bigger or the image smaller? I'm a bit confused


    Has someone helped you? Then you can Rate their helpful post.

  4. #4

    Thread Starter
    Hyperactive Member stilekid007's Avatar
    Join Date
    Apr 2005
    Location
    DUDE! I'm your neighbor! HELLO!!!
    Posts
    388

    Re: Restricting a picture box size to the form size.

    I am trying to make the image smaller. However - Nova's code worked great! Thank you all for your help and solutions!
    Stilekid007
    Quote Originally Posted by stilekid007
    I RATE ALL HELPFULL POSTS!

  5. #5
    Fanatic Member Nove's Avatar
    Join Date
    Jul 2004
    Posts
    736

    Re: [RESOLVED] Restricting a picture box size to the form size.

    No problem.

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