Quantcast
Channel: VBForums - CodeBank - Visual Basic 6 and earlier
Viewing all articles
Browse latest Browse all 1448

Form Window Setup With Pixel Perfect Accuracy

$
0
0
One of the biggest issues with setting up your form for doing graphical programming is to get it right perfectly. You searched on Google how to do it; you messed around with the Widths and Heights; setting the Scalemode to vbPixels; messed around with Screen.TwipsPerPixel X and Y; and....still no luck. It ends up never being the values you put in to begin with, not to mention the borders of the form as well as the top of your window throws off the values a notch. Luckily I created a function that does just that. This simple sub routine will allow you to set the window anywhere you want on screen and allows you to set the size of your form window with pixel perfect accuracy by just the interior of your form window. This assumes that you are using either a borderstyle of sizable, fixed single, or none. After running this small sample program, you will see that the scalewidth and scaleheights are exact as the values you wanted. And if you take a snapshot of it pressing your PrintScreen key, paste it in a paint program, and get the width and heights of within your window, you will see it'll be exactly the number of pixels you wanted. Enjoy as code like this is not easy to come by. It should be universal. If not, you can adjust the offsets. I tested it on a bunch of resolutions and its all the same so far.

[EDIT] Fixed the code shown below. Now it should be ok.

vb Code:
  1. Option Explicit
  2.  
  3. Private Sub Window_Setup(Window As Form, Optional ByVal X As Long = -1, Optional ByVal Y As Long = -1, Optional ByVal Width As Long = -1, Optional ByVal Height As Long = -1, Optional Caption As String = " ", Optional Auto_Redraw As Boolean = False, Optional ByVal Back_Color As Long = -1)
  4.     'Use -1 for default values and "" for default strings.
  5.     With Window
  6.         If Caption <> " " Then .Caption = Caption 'Else use current setting. Note: Some people may want "" as the caption.
  7.         .AutoRedraw = Auto_Redraw
  8.         .ScaleMode = vbPixels
  9.         If X <> -1 Then .Left = X * Screen.TwipsPerPixelX 'Else use current setting.
  10.         If Y <> -1 Then .Top = Y * Screen.TwipsPerPixelY 'Else use current setting.
  11.         If .BorderStyle = vbSizable Then
  12.             If Width <> -1 Then .Width = (Width * Screen.TwipsPerPixelX) + (16 * Screen.TwipsPerPixelX) 'Else use current setting.
  13.             If Height <> -1 Then .Height = (Height * Screen.TwipsPerPixelY) + (38 * Screen.TwipsPerPixelY) 'Else use current setting.
  14.         ElseIf .BorderStyle = vbFixedSingle Then
  15.             If Width <> -1 Then .Width = (Width * Screen.TwipsPerPixelX) + (6 * Screen.TwipsPerPixelX) 'Else use current setting.
  16.             If Height <> -1 Then .Height = (Height * Screen.TwipsPerPixelY) + (28 * Screen.TwipsPerPixelY) 'Else use current setting.
  17.         ElseIf .BorderStyle = 0 Then
  18.             If Width <> -1 Then .Width = (Width * Screen.TwipsPerPixelX) 'Else use current setting.
  19.             If Height <> -1 Then .Height = (Height * Screen.TwipsPerPixelY) 'Else use current setting.
  20.         End If
  21.         If Back_Color <> -1 Then .BackColor = Back_Color 'Else use current setting.
  22.         .Show
  23.         .SetFocus
  24.     End With
  25. End Sub
  26.  
  27. Private Sub Form_Load()
  28.     Window_Setup frmMain, 0, 0, 255, 255
  29.     Print frmMain.ScaleWidth & ", " & frmMain.ScaleHeight
  30. End Sub

Viewing all articles
Browse latest Browse all 1448

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>