Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Excel commands
Message
De
27/04/2005 12:41:30
 
 
À
27/04/2005 10:46:17
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Divers
Thread ID:
01008863
Message ID:
01008911
Vues:
19
Hi Carlos.

I need to find a list of excel commands. The goal is to execute those commands from Foxpro using Excel as an object.

You have some great tools in VFP to help you with the discovery process. You can open the Excel object library in the Object Browser to learn about its PEMs. You can also use intelliSense to "play" with the Excel object in the command window like so:
oXl = CREATEOBJECT( [Excel.Application] )
oXl.Visible = .T.
oWB = oXl.Workbooks.Add()
oSheet = oWB.Worksheets( 1 )
oSheet.Name = [MyTestSheet]
and so on...
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform