Ver Mensaje Individual
  #8  
Antiguo 12-07-2007
Avatar de maxvera
maxvera maxvera is offline
Miembro
 
Registrado: jun 2006
Posts: 21
Reputación: 0
maxvera Va por buen camino
Prueba esto (con las modificaciones adecuadas a tu código):

Código Delphi [-]
procedure TForm1.Table1AfterScroll(DataSet: TDataSet);
begin
  if (not Table1.State in [dsEdit, dsInsert])
  and (Table1.RecNo < Table1.RecordCount)
  then Table1.Last;
end;
__________________
El colmo del inmovilismo es el 0 absoluto.
Responder Con Cita