ACC2000: How to Determine the Current Screen Resolution

ID: Q210106


The information in this article applies to:
  • Microsoft Access 2000

Advanced: Requires expert coding, interoperability, and multiuser skills.

This article applies to a Microsoft Access database (.mdb) and a Microsoft Access project (.adp).


SUMMARY

This article shows you how to create a sample user-defined Visual Basic for Applications function to determine the current screen resolution. You can use this function to determine if you are running in standard VGA mode (640 x 480) or Super VGA mode (800 x 600, 1024 x 768 or 1600 x 1200).

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Solution Provider or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Solution Providers, please see the following page on the World Wide Web:

http://www.microsoft.com/mcsp/
For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

http://www.microsoft.com/support/supportnet/overview/overview.asp


MORE INFORMATION

The following example demonstrates how to create and use the sample GetScreenResolution() function.

NOTE: You may have some Microsoft Windows API functions defined in an existing Microsoft Access library; therefore, your declarations may be duplicates. If you receive a duplicate procedure name error message, remove or comment out the declarations statement in your code.

  1. Create a new module, and type the following Declarations and function:


  2. 
    '*****************************************************************
    ' DECLARATIONS SECTION
    '*****************************************************************
    
    Option Explicit
    
    Type RECT
       x1 As Long
       y1 As Long
       x2 As Long
       y2 As Long
    End Type
    
    ' NOTE: The following declare statements are case sensitive.
    
    
    Declare Function GetDesktopWindow Lib "User32" () As Long
    Declare Function GetWindowRect Lib "User32" _
          (ByVal hWnd As Long, rectangle As RECT) As Long
    
    '*****************************************************************
    ' FUNCTION: GetScreenResolution()
    '
    ' PURPOSE:
    '   To determine the current screen size or resolution.
    '
    ' RETURN:
    '   The current screen resolution. Typically one of the following:
    '      640 x 480
    '      800 x 600
    '     1024 x 768
    '
    '*****************************************************************
    Function GetScreenResolution () as String
    
       Dim R As RECT
       Dim hWnd As Long
       Dim RetVal As Long
    
       hWnd = GetDesktopWindow()
       RetVal = GetWindowRect(hWnd, R)
       GetScreenResolution = (R.x2 - R.x1) & "x" & (R.y2 - R.y1)
    
    End Function 
  3. On the View menu, click Immediate Window.


  4. Type the following line in the Immediate Window, and then press ENTER:
    
    ? GetScreenResolution() 


    Note that the current screen resolution is displayed in the Immediate window. If the current resolution is standard VGA, the following is displayed in the Immediate window:


  5. 640x480


REFERENCES

For additional information about API Calls, please see the following article in the Microsoft Knowledge Base:

Q210115 How to Convert API Calls from 16-bit to 32-bit

Additional query words:

Keywords : kbdisplay kbprg kbdta AccCon
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbhowto


Last Reviewed: July 6, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.