Ver Mensaje Individual
  #5  
Antiguo 17-02-2004
aram2r aram2r is offline
Miembro
 
Registrado: ene 2004
Posts: 81
Reputación: 23
aram2r Va por buen camino
creo q ya lo tengo

bueno gracias por todo pero creo q con esto lo he solucionado.....



procedure TFormPrincipal.PackDBF(const ADatabase, ATable: String);
begin
with TTable.Create(nil) do
try
DatabaseName := ADataBase;
TableName := ATable;
Exclusive := True;
Open;
Check(DbiPackTable(Database.Handle,Handle,'','',True));
finally
Free;
end;
end;
Responder Con Cita