VBA를 사용하여 매크로를 시작한 CommandBar 버튼을 확인하는 방법은 무엇입니까?
3551 단어 vbamacrostodeterminewhichcomm
예시
Visual Basic 선택
Sub DummyMacro()
If Application.CommandBars.ActionControl Is Nothing Then
' the macro was not started from a commandbar button
MsgBox "This could be your macro running!", vbInformation, _
"This macro was not started from a CommandBar button"
Else ' the macro was started from a commandbar button
MsgBox "This could be your macro running!", vbInformation, _
"This macro was started from this CommandBar button: " & _
Application.CommandBars.ActionControl.Caption
End If
End Sub
코드 저장
매크로 옵션 선택
코드 실행
출력
마무리
이 문서가 Microsoft Excel에서 VBA를 사용하여 매크로를 시작한 CommandBar 단추를 결정하는 방법에 대한 지침을 제공하기를 바랍니다. ** ** 문의사항은 댓글로 남겨주시고 소중한 제안도 잊지마세요. 저희 사이트를 방문해 주셔서 대단히 감사합니다!! 계속 학습 Geek Excel !! *Excel Formulas에서 자세히 읽어보세요 *!!
관련 기사:
Reference
이 문제에 관하여(VBA를 사용하여 매크로를 시작한 CommandBar 버튼을 확인하는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/excelgeek/how-to-determine-which-commandbar-button-started-a-macro-using-vba-4i8l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)