IDVBCMBatchEdit/Info::removedfromexecutivedate
Method Signatures |
|
C\C++ |
HRESULT get_RemovedFromExecutiveDate( long lWait, BSTR *bstrRemovedFromExecutiveDate) |
VB |
Public Property Get RemovedFromExecutiveDate( ByVal lWait As Long) As String |
Returns the remove from Batch Executive date of the batch in 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 objBatchInfo As DVBCMBatchInfo
Dim strRemovedFromExecutiveDate As String
Dim strCampaign As String
Dim strBatchID As String
GetCampaignID(strCampaign)
GetBatchIDInCampaign(strCampaign, strBatchID)
GetCampaignInfoObject(objCampaignInfo)
GetBatchInfoObjectInCampaign(objCampaignInfo, objBatchInfo)
strRemovedFromExecutiveDate = objBatchInfo.RemovedFromExecutiveDate
End Sub
Parameter Name |
Purpose |
|---|---|
lWait |
Optional. Default = 30000. Time to wait for a server resource in milliseconds. |
bstrRemovedFromExecutiveDate |
Removed from Batch Executive date of the batch. |