Ver Mensaje Individual
  #11  
Antiguo 16-03-2009
NeoNew NeoNew is offline
Miembro
 
Registrado: mar 2009
Ubicación: Bogotá
Posts: 49
Reputación: 0
NeoNew Va por buen camino
Holaa AdrianMex...
Agregar 40 campos string a una tabla:
Código Delphi [-]
  ABSTable1.Close;
  intHasta := 40;
  for i := 1 to intHasta do
  begin
    strCampo := IntToStr(i);
    ABSTable1.RestructureFieldDefs.Add(strCampo,aftString,10,False);
  end;
  ABSTable1.RestructureTable(absLog);
  ABSTable1.Open;

Me cuentas...
Responder Con Cita