Hi,

I use the following code with dao 3.5 and dao 3.6. It works with 3.5, but with 3.6 at the second deletion a exception is thrown (from DoFieldExchange a String deletion fails)
Code:
    pSet2->Open();
    while(!pSet2->IsEOF())
    {
      pSet2->Delete();
      pSet2->MoveFirst();
    }
    pSet2->Close();
Whats the proble?

Thanks

Michael