Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

ACC2000: How to Find the Windows and System Paths


View products that this article applies to.

This article was previously published under Q210158
Advanced: Requires expert coding, interoperability, and multiuser skills.

↑ Back to the top


Summary

This article describes how to create a Visual Basic for Applications module that uses the 32-bit versions of the GetWindowsDirectory() and GetSystemDirectory() Windows API functions to return the Windows and Windows System directory (folder) paths.

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers 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 requirements.

↑ Back to the top


More information

The following example demonstrates how to use the 32-bit versions of the GetWindowsDirectory() and GetSystemDirectory() Windows API functions:

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 module and type the following line in the Declarations section:
    Option Compare Database
    Option Explicit
    
    Declare Function apiGetWindowsDirectory& Lib "kernel32" Alias _
       "GetWindowsDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long)
    Declare Function apiGetSystemDirectory Lib "kernel32" Alias _
       "GetSystemDirectoryA" (ByVal lpBuffer As String, ByVal nSize _
       As Long) As Long
    					
  2. Type the following procedures:
    ' This function returns the path to the Windows directory
    ' as a string.
    
    Function GetWinDir () As String
       Dim lpbuffer As String * 255
       Dim Length as Long
       Length = apiGetWindowsDirectory(lpbuffer, Len(lpbuffer))
       GetWinDir = Left(lpbuffer, Length)
    End Function
    
    ' This function returns the path to the Windows System folder
    ' as a string.
    
    Function GetSysDir () As String
       Dim lpbuffer As String * 255
       Dim Length as Long
       Length = apiGetSystemDirectory(lpbuffer, Len(lpbuffer))
       GetSysDir = Left(lpbuffer, Length)
    End Function
    
    					
  3. To test the GetWinDir() function, type the following line in the Immediate window, and then press ENTER:
    ? GetWinDir()
    						
    Note that the Windows folder path is displayed in the Immediate window.
  4. To test the GetSysDir() function, type the following line in the Immediate window, and then press ENTER.
    ? GetSysDir()
    						
    Note that the Windows System folder path is displayed in the Immediate window.

↑ Back to the top


References

For more information about API functions, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type Application Programming Interface in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

↑ Back to the top


Keywords: KB210158, kbprogramming, kbhowto

↑ Back to the top

Article Info
Article ID : 210158
Revision : 5
Created on : 10/11/2006
Published on : 10/11/2006
Exists online : False
Views : 384