Skip to content

Instantly share code, notes, and snippets.

@rediffusion
Last active July 30, 2019 13:06
Show Gist options
  • Select an option

  • Save rediffusion/ab1f9486003e898393107138226f42e8 to your computer and use it in GitHub Desktop.

Select an option

Save rediffusion/ab1f9486003e898393107138226f42e8 to your computer and use it in GitHub Desktop.
NOTE: Для »» `Menu` и `Dynamic Menu` подходит тоже!
Public Sub getImages(control As IRibbonControl, ByRef image)
Set Image = LoadPicture(getAppPath & control.Tag) 'В `XML` ещё используется » “Tag”.
image = "HappyFace" ' или ImageMso
End Sub
Function Значок(control As IRibbonControl, ByRef image) 'В `XML` файле пишем getImage="Значок".
On Error GoTo выход
Select Case control.ID 'Вставить идентификатор!
Case "Кнопка": Set image = LoadPicture(ThisWorkbook.Path & "\TEST.jpg")
' Case "Кнопка": Set image = CommandBars.GetImageMso("FileOpen", 32, 32)
End Select
On Error GoTo 0
выход:
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment