Question:
I work with large blobs and I would like that when I accessed them in the TDBMemo window they showed theyr final portion instead of their beginning. Is it possible?
Answer:
Admittedly, I haven’t done this, but you should be able to get to the end ofthe text by doing the following in the OnEnter method of the TDBMemo:
SelStart := GetTextLen;What this does is set the cursor on the very end of the memo.