IDVBCMBatchEdit/Info::modifiedby

Method Signatures

 

C\C++

HRESULT get_ModifiedBy(

long lWait,

BSTR *bstrModifiedBy)

VB

Public Property Get ModifiedBy(

ByVal lWait As Long) As String

Returns the modified from BE by user 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 strModifiedBy As String
    Dim strCampaign As String
    Dim strBatchID As String
    GetCampaignID(strCampaign)
    GetBatchIDInCampaign(strCampaign, strBatchID)
    GetCampaignInfoObject(objCampaignInfo)
    GetBatchInfoObjectInCampaign(objCampaignInfo, objBatchInfo)
    strModifiedBy = objBatchInfo.ModifiedBy
End Sub 

Parameter Name

Purpose

lWait

Optional. Default = 30000. Time to wait for a server resource in milliseconds.

bstrModifiedBy

Modified by user of the batch.