Results 1 to 6 of 6

Thread: Window Sizes

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Sep 1999
    Location
    Liverpool, UK
    Posts
    64

    Smile

    Quick Question. I've got a function that returns the screen resolution, i.e. x=1280 y=1024. How can I resize a form based on the x value so I can be sure that it stretches from one side of the screen to the other

  2. #2
    Frenzied Member mlewis's Avatar
    Join Date
    Sep 2000
    Posts
    1,226
    Here you go:

    SM = FormX.ScaleMode
    FormX.ScaleMode = 3 'vbPixels
    FormX.Left = 0
    FormX.Width = ScreenResWidth
    FormX.ScaleMode = SM

    BTW, you mind posting that code? I'd like a look at it. Tnx.

    [Edited by mlewis on 09-27-2000 at 09:22 AM]
    M. Lewis
    Pi-Q Software
    How many mouse clicks does it take to cook breakfast?

    Blargh! I am dead!

  3. #3
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    Form1.width = screen.width
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

  4. #4

    Thread Starter
    Lively Member
    Join Date
    Sep 1999
    Location
    Liverpool, UK
    Posts
    64
    I know how you resize a form, i.e. me.width=10000. But I think I need to change the scale width or somthing, because if you resize a form to say... '1024', its very small.



    This gets the resolution....

    Public Declare Function GetSystemMetrics Lib "user32.dll" (ByVal nIndex As Long) As Long

    Dim x, y As Long

    SM_CXSCREEN = 0
    SM_CYSCREEN = 1

    x = GetSystemMetrics(SM_CXSCREEN)
    y = GetSystemMetrics(SM_CYSCREEN)

  5. #5
    Frenzied Member mlewis's Avatar
    Join Date
    Sep 2000
    Posts
    1,226
    Yes, use my code with setting ScaleMode to vbpixels and it will work. The default scale mode is twips, and those are a load smaller than pixels, so 1024 twips will be tiny compared to 1024 pixels.

    Thanx for the code.
    M. Lewis
    Pi-Q Software
    How many mouse clicks does it take to cook breakfast?

    Blargh! I am dead!

  6. #6
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    If you want to resize your form and controls based on user screen resolution then this is the answer.
    Code:
    '
    
    this goes in a class module  NOT bas ( A CLASS MODULE)
    '
    Option Explicit
    
    ' Title:    Elastic Forms
    ' Author:   Leigh Bowers
    ' Email:    [email protected]
    ' WWW:      http://www.esheep.freeserve.co.uk/compulsion
    ' Version:  1.01
    ' Date:     19th June 1999
    ' Requires: N/A
    ' License:  Freely Distributable (non-commercial use)
    
    Private fForm As Form
    
    Private lOriginalWidth As Long
    Private lOriginalHeight As Long
    
    Private lMinWidth As Long
    Private lMinHeight As Long
    
    Private Type udtControl
        lLeft As Long
        lTop As Long
        lWidth As Long
        lHeight As Long
    End Type
    Private aControls() As udtControl
    
    Public Property Let Form(ByVal fPassForm As Form)
        
    Dim iCount As Integer
    Dim cControl As Control
    
        Set fForm = fPassForm
        
        ' Store form's original Width & Height
        
        lOriginalWidth = fForm.Width
        lOriginalHeight = fForm.Height
    
        ' Use error trapping to ignore components that don't
        ' support certain properties being read at run-time
    
        On Error Resume Next
    
        ' Store the form's component's properties
    
        iCount = 0
        ReDim aControls(fForm.Controls.Count)
    
        For Each cControl In fForm.Controls
            iCount = iCount + 1
            With aControls(iCount)
                If TypeOf cControl Is Line Then
                    .lLeft = cControl.X1
                    .lTop = cControl.Y1
                    .lWidth = cControl.X2
                    .lHeight = cControl.Y2
                Else
                    .lLeft = cControl.Left
                    .lTop = cControl.Top
                    .lWidth = cControl.Width
                    .lHeight = cControl.Height
                End If
            End With
        Next ' Each
    
    End Property
    
    Public Sub FormResize()
    
        ' v1.01 (19/06/1999)
        '
        ' bDisableResize:
        ' Used to avoid unnecessary *recursive* resizing
        '
        ' lPreviousWidth/Height:
        ' Used to avoid unnecessary resizing
    
        ' Resize the form's controls
    
    Dim iCount As Integer
    Dim cControl As Control
    Dim iTaskBarHeight As Integer
    Dim sOriginalWidthUnit As Single
    Dim sOriginalHeightUnit As Single
    Static bDisableResize As Boolean
    Static lPreviousWidth As Long
    Static lPreviousHeight As Long
    
        If fForm Is Nothing Or bDisableResize Then Exit Sub
    
        ' Don't process minimized forms
        
        If fForm.WindowState = vbMinimized Then Exit Sub
    
        ' Check form size against minimums
        
        bDisableResize = True
        If fForm.Width < lMinWidth Then fForm.Width = lMinWidth
        If fForm.Height < lMinHeight Then fForm.Height = lMinHeight
        bDisableResize = False
        
        ' Ensure form size has changed
        
        If lPreviousWidth = fForm.Width And lPreviousHeight = fForm.Height Then Exit Sub
        lPreviousWidth = fForm.Width
        lPreviousHeight = fForm.Height
    
        ' Perform calculations in advance (speed increase)
    
        iTaskBarHeight = 28 * Screen.TwipsPerPixelY ' Standard height
        sOriginalWidthUnit = lOriginalWidth / fForm.Width
        sOriginalHeightUnit = (lOriginalHeight - iTaskBarHeight) / (fForm.Height - iTaskBarHeight)
    
        ' Use error trapping to ignore components that don't
        ' support certain properties being set at run-time
    
        On Error Resume Next
    
        ' Do the resize...
        
        iCount = 0
    
        For Each cControl In fForm.Controls
            iCount = iCount + 1
            With cControl
                If TypeOf cControl Is Line Then
                    .X1 = Int(aControls(iCount).lLeft / sOriginalWidthUnit)
                    .Y1 = Int(aControls(iCount).lTop / sOriginalHeightUnit)
                    .X2 = Int(aControls(iCount).lWidth / sOriginalWidthUnit)
                    .Y2 = Int(aControls(iCount).lHeight / sOriginalHeightUnit)
                Else
                    .Left = Int(aControls(iCount).lLeft / sOriginalWidthUnit)
                    .Top = Int(aControls(iCount).lTop / sOriginalHeightUnit)
                    .Width = Int(aControls(iCount).lWidth / sOriginalWidthUnit)
                    .Height = Int(aControls(iCount).lHeight / sOriginalHeightUnit)
                End If
            End With
        Next ' Each
    
    End Sub
    
    
    Private Sub Class_Terminate()
    
        Set fForm = Nothing
    
    End Sub
    
    
    
    
    Public Property Let MinWidth(ByVal lPassMinWidth As Long)
    
        lMinWidth = lPassMinWidth
    
    End Property
    Public Property Let MinHeight(ByVal lPassMinHeight As Long)
    
        lMinHeight = lPassMinHeight
    
    End Property
    
    '<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    
    'this if your form code for every form in project
    
    Option Explicit
    
    Private clsElastic As clsElasticForms
    
    Private Sub Form_Load()
    
        Set clsElastic = New clsElasticForms
        clsElastic.Form = Me
        clsElastic.MinHeight = 4000
        clsElastic.MinWidth = 4000
    
    End Sub
    
    
    Private Sub Form_Resize()
    
        clsElastic.FormResize
    
    End Sub
    
    
    Private Sub Form_Unload(Cancel As Integer)
    
        Set clsElastic = Nothing
    
    End Sub
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

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