hi,
is there a way to hide the MSChart object??
i want to hide and show the chart by clicking on a command button.
thanks,
ohad.
Printable View
hi,
is there a way to hide the MSChart object??
i want to hide and show the chart by clicking on a command button.
thanks,
ohad.
This code behind a button should toggle it back and forth...
private Sub Command1_Click()
MSChart1.Visible = Not MSChart1.Visible
End Sub