Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Exporting memo field into Excel template
Message
 
À
18/10/2001 12:42:35
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Divers
Thread ID:
00569882
Message ID:
00570826
Vues:
23
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform