risk respondió:
Para acceder a los datos de excel haz lo siguiente: var Excel: Variant; texto: string; begin try Excel := CreateOleObject('Excel.Application'); except raise exception.create('error'); end; try Excel.Workbooks.Open('nombre.xls'); //abrimos la hoja de...