Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Need help with Excel OLE automation
Message
From
17/11/1998 11:42:29
 
 
To
17/11/1998 11:38:53
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00158297
Message ID:
00158301
Views:
14
>I need help converting the following named arguments to positional arguments. I have tried many unsuccessful guesses. Also, what the heck do you do with values such as 'xlColumnClustered' that Fox chokes on?
>
>PRE
>goexcel.Range("A1:D3").Select
>goexcel.Charts.Add
>goexcel.ActiveChart.ChartType = xlColumnClustered
>goexcel.ActiveChart.SetSourceData Source:=Sheets("Sheet1").Range("A1:D3"), PlotBy:= xlRows
>goexcel.ActiveChart.Location Where:=xlLocationAsNewSheet
>With goexcel.ActiveChart
> .HasTitle = True
> .ChartTitle.Characters.Text = "Test chart"
> .Axes(xlCategory, xlPrimary).HasTitle = True
> .Axes(xlCategory, xlPrimary).AxisTitle.Characters.Text = "Month"
> .Axes(xlValue, xlPrimary).HasTitle = True
> .Axes(xlValue, xlPrimary).AxisTitle.Characters.Text = "Dollars"
>EndWith

xlcolumnclusted is a constant that is equal to 51.

You can find the value of these constants by starting Excel
and then using Alt-F11 then F2 (object browser). From there
you can search for the value of constants. Do that or include
the excel constants in a header file...
Previous
Reply
Map
View

Click here to load this message in the networking platform