Links are not active on this page.
 VersionLanguage Property

The language information for a project.

Object.VersionLanguage[ = nLanguage]

Expand imageReturn Value

nLanguage

Specifies the language ID for a project. FOXPRO.H contains a listing of the values for the primary and sub-language IDs that can be combined to create a valid language ID. For example, the following code sets the VersionLanguage to United States English (0x09 specifies English, 0x0400 specifies United States English) for the current project:

 CopyCode imageCopy Code
Application.ActiveProject.VersionLanguage = 0x09 + 0x0400

Expand imageRemarks

Applies To: Project Object

The VersionLanguage property corresponds to the value of the Language ID item in the EXE Version dialog box.

Expand imageSee Also