Centering a picture box 
Author Message
 Centering a picture box

I have the following piece of code on a form to center a picturebox:

   PicLogo.Left = (frmMain.Width - PicLogo.Width ) / 2
   PicLogo.Top = (frmMain.Height - PicLogo.Height) / 2

When actually run the placement of the picturebox is about 75 twips off
in both directions. Is there part of the form that isn't shown but is
included in Height and width? If you have any suggestions let me know.

Thanks,
Tundra



Fri, 06 Sep 2002 03:00:00 GMT  
 Centering a picture box
Try

   PicLogo.Left = (frmMain.ScaleWidth - PicLogo.Width ) / 2
   PicLogo.Top = (frmMain.ScaleHeight - PicLogo.Height) / 2

HansR



Quote:
> I have the following piece of code on a form to center a picturebox:

>    PicLogo.Left = (frmMain.Width - PicLogo.Width ) / 2
>    PicLogo.Top = (frmMain.Height - PicLogo.Height) / 2

> When actually run the placement of the picturebox is about 75 twips off
> in both directions. Is there part of the form that isn't shown but is
> included in Height and width? If you have any suggestions let me know.

> Thanks,
> Tundra



Fri, 06 Sep 2002 03:00:00 GMT  
 Centering a picture box
Hi,

Use the ScaleWidth and ScaleHeight property of the form, instead of Width
and Height.
These are more exact for this.

Sandra


Quote:
> I have the following piece of code on a form to center a picturebox:

>    PicLogo.Left = (frmMain.Width - PicLogo.Width ) / 2
>    PicLogo.Top = (frmMain.Height - PicLogo.Height) / 2

> When actually run the placement of the picturebox is about 75 twips off
> in both directions. Is there part of the form that isn't shown but is
> included in Height and width? If you have any suggestions let me know.

> Thanks,
> Tundra



Sat, 07 Sep 2002 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. How do I center a picture box on a form in VB5

2. Centering Pictures in Picture Boxes

3. Center a picture in a picture box

4. How do you center a picture box showing an avi file on a form?

5. Centering bmp in picture box

6. Centering in a Picture Box

7. Centering paintpicture image in a picture box - HELP

8. insert picture box inside picture box

9. Placing a picture in center of a MDI-form

10. Placing a picture in the center of a form

11. How to center a picture (gif) in a MDI form

12. Center or Stretch a Picture on MDI form

 

 
Powered by phpBB® Forum Software