Office Ribbon Editor를 사용하여 리본 UI에 매크로 실행 버튼 추가
소개
완성 이미지
운영 환경
리본 UI 사용자 정의 소프트웨어
커스터마이즈 소프트웨어는 2 종류 있습니다. 설치 방법은 링크처를 참조 바랍니다. 지원이 종료되었지만 1 개의 Office Ribbon Editor를 사용 중입니다.
리본 UI 측 작성 예
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon startFromScratch="false">
<tabs>
<tab id="ad" label="myHome00.85">
<group id="web" label="link">
<button id="web_link" label="google"
imageMso="G" size="normal" onAction="google" />
<button id="web_uni" label="Unicode"
imageMso="U" size="normal" onAction="The Unicode Consortium" />
</group>
<group id="sagyo" label="作業">
<button id="haba_size" label="行列幅自動調整"
imageMso="G" size="normal" onAction="行列幅自動調整" />
<button id="half_size" label="英数仮名→半角"
imageMso="S" size="normal" onAction="英数仮名→半角" />
<button id="uni_do" label="unicode表処理"
imageMso="S" size="normal" onAction="unicode表処理" />
</group>
<!--省略-->
</tab>
</tabs>
</ribbon>
</customUI>
VBA 측 작성 예
Option Explicit
Sub google(control As IRibbonControl)
Dim objIE As Object
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = True
objIE.Navigate ("https://www.google.co.jp/")
End Sub
동작 확인
※ 열었습니다.
보충
Reference
이 문제에 관하여(Office Ribbon Editor를 사용하여 리본 UI에 매크로 실행 버튼 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/good_kobe/items/4350d3b43215fcd7dc06텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)