Hey Jason,
Thanks for helping, I appreciate it! For some stupid reason, I was
specifying the area to move by the END address instead of the START address.
It should be array[j] and array[j+1]. Thanks again!
Tom Ward
============================================================================
> if (j != count)> MemMove(&(array[count]), &(array[count-1]),
^^^^^ ^^^^^
are you sure this is supposed to be 'count'?
Actually, it's trying to move the contents of slots 33 through 38 into
slots 32 through 37, which I suspect is off the end of the array.