Home Undelete a row Set current UserID

From .NET code

Use DataInterface.UndeleteRow or DataInterface.UndeleteRows, as demonstrated in the following code sample. For more information, see the documentation.


    //Undelete company 12
    dataInterface.UndeleteRow(UserID, "tblCompany", 12);

    //Undelete all rows created by UserID 1
    dataInterface.UndeleteRows(UserID, "tblCompany", 
        "CreatedBy=1");