Ver Mensaje Individual
  #3  
Antiguo 26-01-2006
gilberto_1126 gilberto_1126 is offline
Miembro
 
Registrado: jun 2004
Posts: 74
Reputación: 22
gilberto_1126 Va por buen camino
Código Delphi [-]
ADOTable50.Close;
      ADOTable50.Filter:='MotherId=' + IntToStr(numero);
      ADOTable50.Filtered:=true;
      ADOTable50.Open;
      ADOTable50.First;
      if ADOTable50.IsEmpty then
      else
      begin
        while not ADOTable50.Eof do
        begin
          ADOTable50.Edit;
          ADOTable50MotherId.Value:=ADOTable50MotherId.Value + 1509949440;
          ADOTable50.Post;
          ADOTable50.Next;
        end;
      end;

Última edición por vtdeleon fecha: 26-01-2006 a las 23:30:29.
Responder Con Cita