Description
This sample shows how to add a new data column to a message
        Set Vmsg = vCmp.GetBusinessObject(oMessages)
        Vmsg.Subject = TxtSubject.Text
        Vmsg.MessageText = TxtBody.Text
        Vmsg.Priority = CmbPriority.ListIndex
        Vmsg.AddDataColumn "Business Partner", "David", oBusinessPartners, "David"
|