Application.ProductCode Property

Access Developer Reference

You can use the ProductCode property to determine the Microsoft Office Access 2007 globally unique identifier (GUID). Read-only String.

Syntax

expression.ProductCode

expression   A variable that represents an Application object.

Example

The following example displays a message indicating the GUID for Microsoft Access for the user's computer.

Visual Basic for Applications
  MsgBox "The GUID for Microsoft Access on this computer is " & Application.ProductCode & "."