Ver Mensaje Individual
  #2  
Antiguo 09-05-2006
Avatar de waltergomez
waltergomez waltergomez is offline
Miembro
 
Registrado: may 2006
Posts: 202
Reputación: 18
waltergomez Va por buen camino
Esta es una forma.

with Dataset do
begin
DisableControls;
First;
while not Eof do
begin
if DBGrid1.SelectedRows.CurrentRowSelected then
begin
// Sentencia de agregacion a la tabla temporal
// TablaTemporal.Append;
// Asignacion de campos
// Post;
end;
Next;
end;
First;
EnableControls;
end;

Saludos,
Responder Con Cita