IDVBCMExecRecipeInfo::versiondate
Method Signatures |
|
C\C++ |
HRESULT get_VersionDate( long lWait, BSTR *bstrVersionDate) |
VB |
Public Property Get VersionDate( ByVal lWait As Long) As String |
This property returns the version date of the given recipe.
Return Values
S_OK - success
else - failed
Memory Allocation
The caller is responsible for releasing the memory associated with the returned string.
Visual Basic Usage Example
Private Sub Button1_Click()
Dim szVersionDate As String
Dim objExecRecipeInfo As DVBCMExecRecipeInfo
Call GetExecRecipeInfoObject(objExecRecipeInfo)
szVersionDate = objExecRecipeInfo.VersionDate
End Sub