I am totally desperate due to the following reason: I have created a large tool based on MS Access 2003. Everyting works fine.
However when I deploy it to my clients PC, still most of the tool works fine except for one chart: When this chart is loaded I make various settings using the following code:
Code: Select all
With Form_subFrmMgmtDashBoardShiftFwdCurve.TChartShiftCurve
.Header.Text.Text = GBL_str_ChartMgmtDashboardShiftFwdCurve
.Header.Visible = True
.Axis.Bottom.Increment = .GetDateTimeStep(dtOneMonth)
.Legend.CheckBoxes = True
.Legend.Visible = True
With .Axis.Bottom.Labels
.Angle = 90
.DateTimeFormat = "m/yy"
.Font.Bold = False
End With
.Series(0).Clear 'Base Curve
.Series(1).Clear 'Edit Curve
.Series(0).XValues.DateTime = True
.Series(1).XValues.DateTime = True
End With
a) it works on other PCs with exactly the same setup
b) exactly the same code works perfectly for at least 10 other charts in the same tool that are loaded without any problem.
I am using V2010.0.0.2 and the latest Office 2003 Service Pack (as well as all other service packs) are installed.
I would appreciate any hint for a solution.
Thank you and best regards
Andreas