[RESOLVED] Picture within Form (Resize)
i have a big picture in my form. when form is set to maximize then whole picture is displayed inside its container (Form), but when form is restore or resized then whole picture is not displayed in form. my question is how to know that now whole picture is not displayed in the form, And how to know that now whole picture is displayed
Re: Picture within Form (Resize)
If you're using a picture loaded directly on the form, just compare Me.Picture.Height and Me.Picture.Width to Me.Height and Me.Width. If you're loading the picture from file manually you can do the same thing with your picture object.
Re: Picture within Form (Resize)
i did it by using ScaleWidth and ScaleHeight. thanks for help :D