VB6.0如何操作ppt2007默认的图表
各位大师好,VB6.0如何操作ppt2007默认的图表呢?望给个提示,谢谢
2012-02-22 17:01
2012-02-22 20:21
程序代码:
Sub Macro2()
ActiveWindow.Selection.SlideRange.Shapes.AddOLEObject(Left:=120, Top:=110, Width:=480, Height:=320, ClassName:="MSGraph.Chart", Link:=msoFalse).Select
ActiveWindow.Selection.ShapeRange.OLEFormat.Activate
With ActiveWindow.Selection.ShapeRange
.Left = 120
.Top = 109.875
.Width = 480
.Height = 320.25
End With
End Sub

2012-02-22 20:25
2012-02-23 10:06
2012-02-28 00:42

2012-02-28 00:47

2012-02-28 01:14
2012-03-01 11:16
2012-03-01 20:04