Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Exporting memo field into Excel template
Message
 
To
18/10/2001 12:42:35
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Miscellaneous
Thread ID:
00569882
Message ID:
00570826
Views:
24
OK,
How about this?
oExcel = CreateObject("Excel.Application")
With oExcel
	.Workbooks.Open('e:\testfile')
	.Range("B3").Rows.AutoFit
	.Range("B3").Value = "extremely long character field about 500 characters long"
	.Range("B3").WrapText = .T.
	.visible = .T.
EndWith
>I am confused as of the syntax.
>I have been using:
>WITH loExcel
> .RANGE("B3").Value = "extremely long character field about 500 characters long"
> .RANGE("B3").WrapText = .T.
>ENDWITH
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform