The top right corner icon is transparent !!


Posted by Stuart on August 15, 2001 2:48 PM

The only way I can exit excell 2000 is to go to file and exit. The top right corner icon is transparent and will not work.
This all started when I ran a spreadsheet with macros that was created on excel 97.
Anyone know how to repair this??

Posted by Mark W. on August 15, 2001 3:26 PM

See...



Posted by Ivan F Moala on August 15, 2001 9:30 PM

Re: See...

Follow Marks suggestion.....but also
gives this a try before trying a full reinstall.
Hopefully this will reset the system menu.

Private Declare Function GetSystemMenu Lib "user32" (ByVal hWnd As Long, _
ByVal bRevert As Long) As Long

Private Declare Function FindWindowA Lib "user32" (ByVal lpClassName As _
String, ByVal lpWindowName As String) As Long


Public Sub GetMenuControlsBack()
Dim ActWinCaption As String
Dim lHandle As Long

ActWinCaption = "Microsoft Excel - " & ActiveWorkbook.Name & vbNullChar
lHandle = FindWindowA(vbNullString, ActWinCaption)

GetSystemMenu lHandle, True

End Sub