Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

The "ActiveWindow.Visible = False" property in a VBA macro does not deactivate an active chart in Excel 2007


View products that this article applies to.

Symptoms

You run a Microsoft Visual Basic for Applications (VBA) macro that uses the ActiveWindow.Visible = False property to deactivate an active chart in Microsoft Office Excel 2007. However, the chart is not deactivated. This issue may cause unexpected behavior in the VBA macro code that follows the ActiveWindow.Visible = False statement. The unexpected behavior may occur because the ActiveChart remains as the Selection object.

↑ Back to the top


Cause

In earlier versions of Microsoft Excel, you could use the ActiveWindow.Visible = False property to deactivate a chart. This property may not work as expected in Excel 2007.

↑ Back to the top


Workaround

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure. However, they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.

A possible workaround for this issue is to make a range active instead of the chart. Alternatively, you can make the specific object active as the current selection.

For example, the following VBA macro code changes the selection from the ActiveChart to the ActiveCell.
ActiveCell.Select

↑ Back to the top


Keywords: KB928990, kbexpertiseinter, kbvba, kbprb, kbautomation, kbprogramming, kbmacro, kbtshoot, kberrmsg

↑ Back to the top

Article Info
Article ID : 928990
Revision : 4
Created on : 10/15/2007
Published on : 10/15/2007
Exists online : False
Views : 260