Microsoft KB Archive/178026

From BetaArchive Wiki

Article ID: 178026

Article Last Modified on 11/23/2006



APPLIES TO

  • Microsoft Excel 97 Standard Edition



This article was previously published under Q178026

SYMPTOMS

When you run a Microsoft Visual Basic for Applications macro or procedure that copies a worksheet, Microsoft Excel may behave as if the ALT key is stuck after the macro or procedure is finished. The behavior is evident when you press a key that normally displays a menu when pressed in combination with the ALT key (for example, ALT+F displays the File menu). This behavior will continue until you type something into a cell of a worksheet.

CAUSE

The behavior may occur under the following conditions:

  • You open Microsoft Excel 97. -and-


  • You immediately run a macro or procedure that uses the Copy method to copy a worksheet to the same workbook where the source worksheet exists.


WORKAROUND

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please visit the following Microsoft Web site:

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:

To work around this behavior, you can use the WindowState property in Visual Basic for Applications to minimize and maximize the Microsoft Excel application window. Follow these steps to create a sample macro that demonstrates this alternative:

  1. Open the file in Microsoft Excel 97 for Windows.
  2. Press ALT+F11 to open the Visual Basic Editor.
  3. On the Insert menu, click Module.
  4. Type the following macro code in the new module:

          ' This macro makes copies of a copied sheet in such a way that the
          ' ALT key does not stick.
    
          Sub Test()
    
             ' Makes a copy of the active sheet and places the copy after the
             ' active sheet.
             ActiveSheet.Copy After:=ActiveSheet
    
             ' Minimizes Microsoft Excel.
             Application.WindowState = xlMinimized
    
             ' Maximizes Microsoft Excel.
             Application.WindowState = xlMaximized
    
          End Sub
                            
  5. Press ALT+F11 to switch to Microsoft Excel.
  6. On the Tools menu, point to Macro, and then click Macros. In the Macro Name list, click Test. Click Run.


STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem no longer occurs in Microsoft Excel 2000.

MORE INFORMATION

REFERENCES

For more information about the Copy method, click the Office Assistant while in the Visual Basic Editor, type Copy method, click Search, and then click to view "Copy Method (Excel 97)."

NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If the Assistant is not able to answer your query, please see the following article in the Microsoft Knowledge Base:

176476 OFF: Office Assistant Not Answering Visual Basic Questions



Additional query words: XL97 8.0

Keywords: kbbug kbdtacode kbprogramming KB178026