IDVBCMCampaignEdit/Info::createddate
Method Signatures |
|
C\C++ |
HRESULT get_CreatedDate( long lWait, BSTR bstrCreatedDate) |
VB |
Public Property Get CreatedDate( ByVal lWait As Long) As String |
Returns the create date of the campaign
Return Values
S_OK - success
else - failed
Memory Allocation
none
Visual Basic Usage Example
Private Sub Button1_Click()
Dim objCampaignInfo As DVBCMCampaignInfo
Dim strCreatedDate As String
Dim strCampaignID As String
GetCampaignID(strCampaign)
GetCampaignInfoObject(objCampaignInfo)
strCreatedDate = objCampaignInfo.CreatedDate
End Sub
Parameter Name |
Purpose |
|---|---|
LWait |
Optional. Default = 30000. Time to wait for a server resource in milliseconds. |
bstrCreatedDate |
String represetnation of the created date of the campaign |