Estoy tratando de leer un archivo Excel desde consola de la siguiente manera:
- Code: Select all Expand view
Static Function ProbandoExcel()
cFile :="MIEXCEL.XLSX"
oExcel:=TOleAuto():New("Excel.Application")
oBook :=oExcel:Workbooks:Open(cFile)
oHoja :=oExcel:Get( "ActiveSheet" )
nTotRowCount:= oHoja:UsedRange:Rows:Count()
FOR Q=1 TO nTotRowCount
ALERT( oHoja:Cells( Q, 1 ):Value )
ALERT( oHoja:Cells( Q, 2 ):Value )
ALERT( oHoja:Cells( Q, 3 ):Value )
ALERT( oHoja:Cells( Q, 4 ):Value )
NEXT
oExcel:WorkBooks:Close()
oExcel:Application:Quit()
RELEASE oHoja
RELEASE oExcel
Return nil
Me da el siguiente error de compilación:
- Code: Select all Expand view
- Unresolved external '_HB_FUN_TOLEAUTO'
¿Debería agregar alguna lib adicional al proyecto?
Desde ya muchas gracias.
Saludos