Microsoft DirectX 8.1 (C++)

Program.CopyrightDate

This topic applies to Windows XP Home Edition and Windows XP Professional only.

The CopyrightDate property specifies and retrieves the copyright date of this Program object.

Syntax

objProgram.CopyrightDate As Date

Parameters

This property takes no parameters.

Error Codes

If the property fails, an error is raised and Err.Number is set to a value other than zero.

Return Values

When getting the value, this property returns a Date.

Example Code

' Setting the property.
Program.CopyrightDate = CDate("January 10, 2001") 
 
' Returning the property.
Dim strName as String
strName = Program.CopyrightDate

See Also