Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Copy but of 16384 rows
Message
 
To
28/12/2000 12:33:59
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00457281
Message ID:
00457444
Views:
19
>Hola Luis,
>
>16384 es una limitacion del tipo XLS. Es necesario a usar otro tipo y abre directamente en Excel o usa "Automation" como decir Markus.


Thanks John, are as well as I make and use AUTOMATION to open it and save it with "SAVE AS XLS".
USE MyTable &&  RECCOUNT("MyTable") > 16384 records !!!
lcDBF = "C:\MyDBF.dbf"
lcXLS = "C:\MyDBF.xls" 
COPY TO (lcDBF) TYPE FOX2X AS 850
loExcel = CREATEOBJECT("Excel.Application")
WITH loExcel.Application
  .Workbooks.Open(lcDBF)
  .ActiveWorkbook.SaveAs(lcXLS, -4143, "", "", .F., .F.)
  .Workbooks.Close
ENDWITH
RELEASE loExcel
Luis María Guayán
Tucumán, Argentina
________________________________
SysOp de www.PortalFox.com
Nada corre como un zorro
________________________________
Previous
Reply
Map
View

Click here to load this message in the networking platform