How to get the deleted rows from SaveFormData

By judam
 
IRRecordset2 rstDeleted;
rstDeleted = (IRRecordset2) pForm.SecondaryFromVariantArray(
                                    Recordsets, “Assistants”);

foreach (object deletedId in rstDeleted.DeletedRecordIds)
{
    //Do Something with your id here
}

Leave a Reply