Ver Mensaje Individual
  #2  
Antiguo 01-02-2007
Avatar de ElKurgan
[ElKurgan] ElKurgan is offline
Miembro Premium
 
Registrado: nov 2005
Posts: 1.242
Reputación: 22
ElKurgan Va camino a la fama
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
Responder Con Cita