bool pack();
The function pack() removes records marked as deleted from a dbf file. It also removes not used blocks from memo file.
This operation cannot be undone.
This operation cannot be undone.
{
// your code
Console.WriteLine( "Reccount = {0}", dbf.recCount() );
dbf.pack();
Console.WriteLine( "Reccount = {0}", dbf.recCount() );
// your code
}