A基督徒回应 http://www.pastornet.net.au/response Have you referenced the Graph library? You can then use the objectbrowser to check out the correct structure of the Graph object and getyour references correct. I''ve done a lot of work with MSGraph from Access to changeTitle/Colours/styles/etc. eg. Function SetChartTitle(ByRef pGraphObject As Object, pChartTitle AsString)DoCmd.Hourglass TrueDim MyGraph As ObjectSet MyGraph = pGraphObject.Object.ApplicationOn Error Resume NextMyGraph.Chart.HasTitle = TrueMyGraph.Chart.ChartTitle.Text = pChartTitleMyGraph.UpdateSet MyGraph = NothingDoCmd.Hourglass FalseEnd Function SetChartTitle Me![MyGraph], "New Title" Note: you also have to set "MyGraph.Chart.HasTitle = True" --regards, Bradley A Christian Response http://www.pastornet.net.au/response 这篇关于获取图表的道具?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 11-02 21:20