Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Excel Help
Message
De
05/12/2007 22:14:10
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Excel Help
Divers
Thread ID:
01273504
Message ID:
01273504
Vues:
55
I'm trying to control Excel from VFP. I can make the change in Excel but I can't figure out how to get VFP to control Excel to do the same thing.

I need to change the formatting of one column of a spreadsheet.

I used the macro recorder which gave me the following code:

Columns("P:P").Select
With Selection
.HorizontalAlignment = xlLeft
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.ReadingOrder = xlContext
End With

How can I change this to execute as VFP code?
Note: the object reference to the spreadsheet is: loActiveSheet

I got this far:

WITH loActiveSheet
.Columns("P:P").Select
With Selection && this line fails to compile
.HorizontalAlignment = xlLeft
.Orientation = 0
.AddIndent = .F. && false
.IndentLevel = 0
.ShrinkToFit = .F. && False
.ReadingOrder = xlContext
END WITH && this line fails to compile
ENDWITH && loActiveSheet

I can figure out the Excel constants, but I can't figure out how to convert the "With Selection" line.


Thanks!
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform