Re: DmDeleteRecord(..) vs. DmRemoveRecord(..) Info needed please

2008-05-29 Thread Tim Astle
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

RE: DmDeleteRecord(..) vs. DmRemoveRecord(..) Info needed please

2000-07-17 Thread Yu, Ken
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

Re: DmDeleteRecord(..) vs. DmRemoveRecord(..) Info needed please

2000-07-17 Thread Tim Astle
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