I am using the following code to change the title on a chart that is embedded on a form, the charts name is chrtissues. Here is the code I'm using.
Private Sub Form_Open(Cancel As Integer)
Me.chrtissues.charttitle.title = Form_frmmakereport.cmbarea.Value
End Sub
I am getting an "Object does not support this property or method" alarm.
This is weird because the code worked before and now it does not. Any ideas?
Private Sub Form_Open(Cancel As Integer)
Me.chrtissues.charttitle.title = Form_frmmakereport.cmbarea.Value
End Sub
I am getting an "Object does not support this property or method" alarm.
This is weird because the code worked before and now it does not. Any ideas?