Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Page Break in Xls through VFP
Message
From
05/04/1999 12:14:22
Bob Lucas
The WordWare Agency
Alberta, Canada
 
 
To
01/04/1999 07:41:41
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00204172
Message ID:
00205242
Views:
17
>Hello,
>
> I have created object as excel object and insert data in it. I ma facing problem when i am trying to add page break in that, Syntax is
>
>ActiveWindow.SelectedSheets.HPageBreaks.Add Before:=ActiveCell
> ----------
>But if i give this command, Foxpro says Syntax error because there is space between .Add and Before If i try to do it through brackets, Xls gives error. is there any other way to add page break?
>
>TIA
>Amit

Here is some code I have used.

oX = CreateObject('Excel.application')

oX.visible = .t.
ox.workbooks.add
oa = oX.workbooks.Item(1)
oas = oa.sheets.item(1)
oas.ResetAllPageBreaks
oas.pagesetup.ZOOM = 80
oas.HPageBreaks.Add(oas.cells(20, 1))
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform