View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Fries[_2_] Fries[_2_] is offline
external usenet poster
 
Posts: 3
Default Formatting charts, problem with deselection.

Hello all,

I wrote a Sub to format all charts equally once selected and running
the procedu


Sub ChartMods()

If ActiveChart Is Nothing Then
MsgBox "No chart selected"
Exit Sub
End If
With ActiveChart
.ChartArea.Font.Name = "Arial"
.ChartArea.Font.FontStyle = "Regular"
.ChartArea.Font.Size = 16
End With

End Sub

Then I made the following call:

Private Sub CommandButton1_Click()
Call ChartMods

End Sub

But the problem is: when I select the chart and then click the button,
the chart gets deselected and the button becomes active in stead of
the chart. What Am I Overlooking?

thanks in advance.

Fries