I was getting a NULL error after the delete. If I used Remove... no
problem! I found out in the knowledge base that the delete sets the record
to NULL before it moves it. The Remove releases the chunk.
Now why on earth would that cause a problem? I'm not trying to read from
the record I'm
Tim,
DmRemoveRecord() removes the entire from memory while DmDeleteRecord()
removes just the data but leaves behind the record header. It is possible
that your table redraw routine accesses deleted records (because the header
is still available) and tries to use data that is no longer valid caus
I was getting a NULL error after the delete. If I used Remove... no
problem! I found out in the knowledge base that the delete sets the record
to NULL before it moves it. The Remove releases the chunk.
Now why on earth would that cause a problem? I'm not trying to read from
the record I'm