Se apendea en donde ?
En el mismo campo memo ?
En un nuevo registro ?
cTexto := "Aca va el Texto"
// Esto reemplaza el contenido del campo
// memo del registro actual
REPLACE CAMPOMEMO WITH cTexto
// Esto agrega un registro nuevo
// grabando el texto en el campo memo
dbAppend()
REPLACE CAMPOMEMO WITH cTexto
// Esto apendea el Texto al Texto existente
REPLACE CAMPOMEMO WITH CAMPOMEMO + cTexto
Bytes!Daniel
Rosario, Argentina