Hola de nuevo.
Estube probando y lo solucione así:
Código Delphi
[-]
procedure TF_ModulDades.Camions_AuxAfterPost(DataSet: TDataSet);
begin
TF_ModulDades.AfterPost:= nil; with Camions_Aux do
begin
Close;
Open;
Prior;
Edit;
Camions_AuxACTUAL.Value:= 'N';
Post;
Next;
end;
TF_ModulDades.AfterPost:=Camions_AuxAfterPost; end;
Saludos.