안녕하세요?
간혹 가다가 엑셀의 메뉴를 컨트롤 하려다가 꼬이는 수가 있습니다.
혹시 모르니 다음의 코드를 모듈에 복사하신후 실행해 보셔요.
Sub test()
Dim c As CommandBar
For Each c In Application.CommandBars
If c.BuiltIn Then
c.Enabled = True
c.Reset
End If
Next c
With Application
.DisplayAlerts = True
.EnableEvents = True
.Calculation = xlCalculationAutomatic
.DisplayScrollBars = True
.DisplayFormulaBar = True
.DisplayFullScreen = False
.DisplayStatusBar = True
End With
MsgBox "작업완료", vbInformation
End Sub
첫댓글 실행해보았으나 여전하네요 다시설치도 해보았습니다. 무슨 설정이 잘못되었는지....
초기화할수있는방법있을까요?