Bueno, no se si funcionará igual, pero para un TMemo normal y corriente, puedes utilizar esta función:
Código:
procedure GoLineColMemo(Memo: TCustomMemo; Linea, Columna: Integer);
begin
With Memo do
begin
SelStart := Columna + Perform(EM_LINEINDEX, Linea, 0) ;
SelLength := 0;
SetFocus;
end;
end;
La constante "EM_LIINEINDEX" está en la unidad "MESSAGES.PAS".
Espero que te sirva.
Un saludo