Excel에서 VBA를 사용하여 바로 가기 메뉴의 가용성을 변경하는 방법은 무엇입니까?
3373 단어 tochangetheavailabilvbamacros
예시
Visual Basic 선택
Sub ToggleCommandBars()
Dim cbEnabled As Boolean
cbEnabled = Not CommandBars(25).Enabled
CommandBars(25).Enabled = cbEnabled ' shortcutmenu for cells
CommandBars(26).Enabled = cbEnabled ' shortcutmenu for columns
CommandBars(27).Enabled = cbEnabled ' shortcutmenu for rows
CommandBars("Toolbar List").Enabled = cbEnabled ' shortcutmenu for toolbars
End Sub
코드 저장
매크로 옵션 선택
코드 실행
폐쇄
이 자습서가 Excel에서 VBA를 사용하여 바로 가기 메뉴의 가용성을 변경하는 방법에 대한 지침을 제공하기를 바랍니다. 문의사항이 있으시면 댓글로 남겨주시고 소중한 제안도 잊지마세요. 저희 사이트를 방문해 주셔서 대단히 감사합니다!! 계속 학습 Geek Excel !! *Excel Formulas에서 자세히 읽어보세요 *!!
계속 읽기:
Reference
이 문제에 관하여(Excel에서 VBA를 사용하여 바로 가기 메뉴의 가용성을 변경하는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/excelgeek/how-to-change-the-availability-for-the-shortcut-menus-using-vba-in-excel-4jo3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)