자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb6.0/vba

IT HUB를 찾아주셔서 감사합니다.

vba [vba] 엑셀(Excel) 셀 오른쪽 마우스 매뉴

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 9,257회 작성일 20-03-17 01:42

본문

출처 : 지식인
잘 사용하지는 않지만 특이하게 코딩되어 기록해둠!!

12508c24b2dbed2871319c85b857d417_1584376932_8616.png


Function 삭제()
    CommandBars("Cell").Reset
End Function

Function 생성()
    Application.CommandBars("Cell").Reset
    
    With Application.CommandBars("Cell")
        With .Controls.Add(Type:=msoControlButton, before:=1)
            .Enabled = False
            .Caption = "─────────────"
            .Visible = True
        End With
        With .Controls.Add(Type:=msoControlButton, before:=1)
            .Enabled = True
            .Caption = "★ 시트백업"
            .OnAction = "메인.시트백업"
            .Visible = True
        End With
        With .Controls.Add(Type:=msoControlButton, before:=1)
            .Enabled = False
            .Caption = "─────────────"
            .Visible = True
        End With
        With .Controls.Add(Type:=msoControlButton, before:=1)
            .Enabled = True
            .Caption = "★ 화면새로고침이 안될때"
            .OnAction = "메인.기능켜기"
            .Visible = True
        End With
        With .Controls.Add(Type:=msoControlButton, before:=1)
            .Enabled = False
            .Caption = "─────────────"
            .Visible = True
        End With
        With .Controls.Add(Type:=msoControlButton, before:=1)
            .Enabled = True
            .Caption = "★ 평  균"
            .OnAction = "메인.평균"
            .Visible = True
        End With
        With .Controls.Add(Type:=msoControlButton, before:=1)
            .Enabled = False
            .Caption = "─────────────"
            .Visible = True
        End With
        With .Controls.Add(Type:=msoControlButton, before:=1)
            .Enabled = True
            .Caption = "★ 집  계"
            .OnAction = "메인.집계"
            .Visible = True
        End With
    End With
End Function

댓글목록

등록된 댓글이 없습니다.