'Module by Jamie Czernik 31st March 2000 {JSCzernik@Hotmail.com}'
'Please feel free to use or distribute this module as you see fit.'
'If you have any useful code that you wish to share then please email it to me'
'www.FilmInformation.co.uk - my web site :-)'
'USE: Design your form to fit 800 * 600 resolution and import this module into your project.'
'Call as "Resizeform Me" on the form's On Open event'
'You might use Form.Visble=False before and Form.Visible=true after the call to stop the '
'Screen flicker when the controls resize. Email me and let me know how you get on.....Jamie'
Option Compare Database
Option Explicit
'Module Declarations'
Global Const WM_HORZRES = 8
Global Const WM_VERTRES = 10
Dim Width As Integer
Dim Factor As Single 'Used as multiplier for current size properties'
Declare Function WM_apiGetDeviceCaps Lib "gdi32" Alias "GetDeviceCaps" (ByVal hdc As Long, ByVal nIndex As Long) As Long
Declare Function WM_apiGetDesktopWindow Lib "user32" Alias "GetDesktopWindow" () As Long
Declare Function WM_apiGetDC Lib "user32" Alias "GetDC" (ByVal hWnd As Long) As Long
Declare Function WM_apiReleaseDC Lib "user32" Alias "ReleaseDC" (ByVal hWnd As Long, ByVal hdc As Long) As Long
Declare Function WM_apiGetSystemMetrics Lib "user32" Alias "GetSystemMetrics" (ByVal nIndex As Long) As Long
Function GetScreenResolution() As String
'returns the height and width'
Dim DisplayHeight As Integer
Dim DisplayWidth As Integer
Dim hDesktopWnd As Long
Dim hDCcaps As Long
Dim iRtn As Integer
'API call get current resolution'
hDesktopWnd = WM_apiGetDesktopWindow() 'get handle to desktop
hDCcaps = WM_apiGetDC(hDesktopWnd) 'get display context for desktop
DisplayHeight = WM_apiGetDeviceCaps(hDCcaps, WM_VERTRES)
DisplayWidth = WM_apiGetDeviceCaps(hDCcaps, WM_HORZRES)
iRtn = WM_apiReleaseDC(hDesktopWnd, hDCcaps) 'release display context
GetScreenResolution = DisplayWidth & "x" & DisplayHeight
Width = DisplayWidth
'MsgBox GetScreenResolution 'ghudson
End Function
Public Sub ResizeForm(frm As Form)
Dim ctl As Control
Dim I As Integer
On Error Resume Next
SetFactor 'Call to procedure SetFactor'
With frm
.Width = frm.Width * Factor
End With
For Each ctl In frm.Controls
With ctl
.Height = ctl.Height * Factor
.left = ctl.left * Factor
.Top = ctl.Top * Factor
.Width = ctl.Width * Factor
.FontSize = .FontSize * Factor
End With
Next ctl
End Sub
Sub SetFactor()
GetScreenResolution 'Call to function GetScreenResolution'
If Width = 640 Then
Factor = 0.75 'ghudson added this to shrink the form
Else
If Width = 800 Then
Factor = 1 '1.25 original ghudson
Else
If Width = 1024 Then
Factor = 1.3 '1.6 original ghudson
Else
If Width = 1152 Then
Factor = 1.6 '1.8 original ghudson
Else: Factor = 1
End If
End If
End If
End If
End Sub