{"id":55000314,"date":"2022-04-01T00:00:00","date_gmt":"2023-03-02T17:05:46","guid":{"rendered":"http:\/\/access-im-unternehmen.aix-dev.de\/aiu\/?p=314"},"modified":"-0001-11-30T00:00:00","modified_gmt":"-0001-11-30T00:00:00","slug":"RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC","status":"publish","type":"post","link":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/","title":{"rendered":"Ribbon-Signaturen f&uuml;r VBA, VB6 und twinBASIC"},"content":{"rendered":"<p><b>Wer Anwendungen programmiert, die das Ribbon anpassen, m&ouml;chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f&uuml;r die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf&uuml;gen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.<\/b><\/p>\n<h2>Wichtige Informationen<\/h2>\n<p>Vorab die wichtigste Information: Verwenden Sie alle Callback-Signaturen genau so wie Sie hier abgebildet sind. Manchmal kann bereits das Hinzuf&uuml;gen eines Datentyps zu einem Parameter, der hier keinen Datentyp aufweist, zu Problemen f&uuml;hren. Wichtig ist auch, auf die korrekte Verwendung von <b>Function<\/b>\/<b>Sub <\/b>zu achten. Wenn Sie twinBASIC verwenden, k&ouml;nnen Sie das Ergebnis zum Zur&uuml;ckgeben entweder einer Variablen mit dem gleichen Namen wie die Funktion zuweisen, oder auch die <b>Return<\/b>-Anweisung nutzen. Die erste M&ouml;glichkeit lautet also:<\/p>\n<pre><span style=\"color: blue;\">Function <\/span>GetText(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef text) _\r\n        <span style=\"color: blue;\"> As String<\/span>\r\n     ...\r\n     GetText = strText\r\n<span style=\"color: blue;\">End Function<\/span><\/pre>\n<p>Die Alternative ist:<\/p>\n<pre><span style=\"color: blue;\">Function <\/span>GetText(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef text) _\r\n        <span style=\"color: blue;\"> As String<\/span>\r\n     ...\r\n     Return strText\r\n<span style=\"color: blue;\">End Function<\/span><\/pre>\n<h2>Hinweis zu den onAction-Alternativen<\/h2>\n<p>F&uuml;r das <b>button<\/b>&#8211; und das <b>toggleButton<\/b>-Element gibt es je zwei Definitionen f&uuml;r die <b>onAction<\/b>-Prozeduren. Du kannst mit dem <b>command<\/b>-Element die Funktion eingebauter Elemente, darunter auch <b>button<\/b>&#8211; und <b>toggleButton<\/b>-Elemente, &uuml;berschreiben beziehungsweise erg&auml;nzen.<br \/>\nWenn Du f&uuml;r diese eine <b>onAction<\/b>-Prozedur hinterlegen m&ouml;chtest, musst Du die Version in der folgenden Liste verwenden, hinter der in Klammern command steht. Diese Signaturen enthalten noch einen zus&auml;tzlichen Parameter, mit dem Du festlegen kannst, ob die eigentliche Funktion des Steuerelements noch ausgef&uuml;hrt werden soll.<\/p>\n<h2>Liste der Callback-Signaturen f&uuml;r VBA und Visual Basic 6<\/h2>\n<h3><b>Button-Element<\/b><\/h3>\n<p><b>getShowImage<\/b>:<\/p>\n<pre>VBA: Sub GetShowImage (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef showImage)\r\nVB6: Function GetShowImage (control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Boolean<\/span><\/pre>\n<p><b>getShowLabel:<\/b><\/p>\n<pre>VBA: Sub GetShowLabel (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef showLabel)\r\nVB6: Function GetShowLabel (control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Boolean<\/span><\/pre>\n<p><b>onAction<\/b>:<\/p>\n<pre>VBA: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)\r\nVB6: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<\/pre>\n<p><b>onAction (command):<\/b><\/p>\n<pre>VBA: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef CancelDefault)\r\nVB6: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef CancelDefault)\r\n<\/pre>\n<h3>checkBox<\/h3>\n<p><b>getPressed<\/b>:<\/p>\n<pre>VBA: Sub GetPressed(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef returnValue)\r\nVB6: Function GetPressed(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Boolean<\/span><\/pre>\n<p><b>onAction<\/b>:<\/p>\n<pre>VBA: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, pressed<span style=\"color: blue;\"> As Boolean<\/span>)\r\nVB6: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, pressed<span style=\"color: blue;\"> As Boolean<\/span>)<\/pre>\n<h3>comboBox<\/h3>\n<p><b>getItemCount:<\/b><\/p>\n<pre>VBA: Sub GetItemCount(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef count)\r\nVB6: Function GetItemCount(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Integer<\/span><\/pre>\n<p><b>getItemID<\/b>:<\/p>\n<pre>VBA: Sub GetItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef id)\r\nVB6: Function GetItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemImage:<\/b><\/p>\n<pre>VBA: Sub GetItemImage(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef image)\r\nVB6: Function GetItemImage(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As <\/span>IPictureDisp\r\n<\/pre>\n<p><b>getItemLabel:<\/b><\/p>\n<pre>VBA: Sub GetItemLabel(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef label)\r\nVB6: Function GetItemLabel(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemScreentip:<\/b><\/p>\n<pre>VBA: Sub GetItemScreenTip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef screentip)\r\nVB6: Function GetItemScreentip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemSuperTip:<\/b><\/p>\n<pre>VBA: Sub GetItemSuperTip (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef supertip)\r\nVB6: Function GetItemSuperTip (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getText<\/b>:<\/p>\n<pre>VBA: Sub GetText(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef text)\r\nVB6: Function GetText(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>onChange:<\/b><\/p>\n<pre>VBA: Sub OnChange(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, text<span style=\"color: blue;\"> As String<\/span>)\r\nVB6: Sub OnChange(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, text<span style=\"color: blue;\"> As String<\/span>)<\/pre>\n<h3>customUI<\/h3>\n<p><b>loadImage<\/b>:<\/p>\n<pre>VBA: Sub LoadImage(imageId<span style=\"color: blue;\"> As <\/span>string, ByRef image)\r\nVB6: Function LoadImage(imageId<span style=\"color: blue;\"> As String<\/span>)<span style=\"color: blue;\"> As <\/span>IPictureDisp<\/pre>\n<p><b>onLoad<\/b>:<\/p>\n<pre>VBA: Sub OnLoad(ribbon<span style=\"color: blue;\"> As <\/span>IRibbonUI)\r\nVB6: Function OnLoad(ribbon<span style=\"color: blue;\"> As <\/span>IRibbonUI)<\/pre>\n<h3>dropDown<\/h3>\n<p><b>getItemCount<\/b><\/p>\n<pre>VBA: Sub GetItemCount(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef count)\r\nVB6: Function GetItemCount(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Integer<\/span><\/pre>\n<p><b>getItemID<\/b>:<\/p>\n<pre>VBA: Sub GetItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef id)\r\nVB6: Function GetItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemImage:<\/b><\/p>\n<pre>VBA: Sub GetItemImage(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef image)\r\nVB6: Function GetItemImage(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As <\/span>IPictureDisp<\/pre>\n<p><b>getItemLabel:<\/b><\/p>\n<pre>VBA: Sub GetItemLabel(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef label)\r\nVB6: Function GetItemLabel(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemScreenTip:<\/b><\/p>\n<pre>VBA: Sub GetItemScreenTip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef screenTip)\r\nVB6: Function GetItemScreentip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemSuperTip:<\/b><\/p>\n<pre>VBA: Sub GetItemSuperTip (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef superTip)\r\nVB6: Function GetItemSuperTip (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getSelectedItemID:<\/b><\/p>\n<pre>VBA: Sub GetSelectedItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef index)\r\nVB6: Function GetSelectedItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Integer<\/span><\/pre>\n<p><b>getSelectedItemIndex:<\/b><\/p>\n<pre>VBA: Sub GetSelectedItemIndex(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef index)\r\nVB6: Function GetSelectedItemIndex(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Integer<\/span><\/pre>\n<p><b>onAction<\/b>:<\/p>\n<pre>VBA: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, selectedId<span style=\"color: blue;\"> As String<\/span>, selectedIndex<span style=\"color: blue;\"> As Integer<\/span>)\r\nVB6: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, selectedId<span style=\"color: blue;\"> As String<\/span>, selectedIndex<span style=\"color: blue;\"> As Integer<\/span>)<\/pre>\n<h3>dynamicMenu<\/h3>\n<p><b>getContent<\/b>:<\/p>\n<pre>VBA: Sub GetContent(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef content)\r\nVB6: Function GetContent(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<h3>editBox<\/h3>\n<p><b>getText<\/b>:<\/p>\n<pre>VBA: Sub GetText(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef text)\r\nVB6: Function GetText(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>onChange<\/b>:<\/p>\n<pre>VBA: Sub OnChange(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, text<span style=\"color: blue;\"> As String<\/span>)\r\nVB6: Sub OnChange(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, text<span style=\"color: blue;\"> As String<\/span>)<\/pre>\n<h3>gallery<\/h3>\n<p><b>getItemCount:<\/b><\/p>\n<pre>VBA: Sub GetItemCount(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef count)\r\nVB6: Function GetItemCount(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Integer<\/span><\/pre>\n<p><b>getItemHeight:<\/b><\/p>\n<pre>VBA: Sub getItemHeight(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef height)\r\nVB6: Function getItemHeight(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Integer<\/span><\/pre>\n<p><b>getItemID<\/b>:<\/p>\n<pre>VBA: Sub GetItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef id)\r\nVB6: Function GetItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemImage:<\/b><\/p>\n<pre>VBA: Sub GetItemImage(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef image)\r\nVB6: Function GetItemImage(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As <\/span>IPictureDisp<\/pre>\n<p><b>getItemLabel:<\/b><\/p>\n<pre>VBA: Sub GetItemLabel(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef label)\r\nVB6: Function GetItemLabel(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemScreenTip:<\/b><\/p>\n<pre>VBA: Sub GetItemScreenTip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef screen)\r\nVB6: Function GetItemScreentip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemSuperTip:<\/b><\/p>\n<pre>VBA: Sub GetItemSuperTip (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>, ByRef screen)\r\nVB6: Function GetItemSuperTip (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, index<span style=\"color: blue;\"> As Integer<\/span>)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getItemWidth:<\/b><\/p>\n<pre>VBA: Sub getItemWidth(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef width)\r\nVB6: Function getItemWidth(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Integer<\/span><\/pre>\n<p><b>getSelectedItemID:<\/b><\/p>\n<pre>VBA: Sub GetSelectedItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef index)\r\nVB6: Function GetSelectedItemID(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Integer<\/span><\/pre>\n<p><b>getSelectedItemIndex:<\/b><\/p>\n<pre>VBA: Sub GetSelectedItemIndex(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef index)\r\nVB6: Function GetSelectedItemIndex(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Integer<\/span><\/pre>\n<p><b>onAction<\/b>:<\/p>\n<pre>VBA: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, selectedId<span style=\"color: blue;\"> As String<\/span>, selectedIndex<span style=\"color: blue;\"> As Integer<\/span>)\r\nVB6: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, selectedId<span style=\"color: blue;\"> As String<\/span>, selectedIndex<span style=\"color: blue;\"> As Integer<\/span>)\r\n<\/pre>\n<h3>menuSeparator<\/h3>\n<p><b>getTitle<\/b>:<\/p>\n<pre>VBA: Sub GetTitle (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef title)\r\nVB6: Function GetTitle (control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<h3>toggleButton<\/h3>\n<p><b>getPressed<\/b>:<\/p>\n<pre>VBA: Sub GetPressed(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef returnValue)\r\nVB6: Function GetPressed(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Boolean<\/span><\/pre>\n<p><b>onAction<\/b>:<\/p>\n<pre>VBA: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, pressed<span style=\"color: blue;\"> As Boolean<\/span>)\r\nVB6: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, pressed<span style=\"color: blue;\"> As Boolean<\/span>)<\/pre>\n<p><b>onAction (command):<\/b><\/p>\n<pre>VBA: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, pressed<span style=\"color: blue;\"> As Boolean<\/span>, ByRef cancelDefault)\r\nVB6: Sub OnAction(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, pressed<span style=\"color: blue;\"> As Boolean<\/span>, ByRef CancelDefault)<\/pre>\n<h3>(diverse)<\/h3>\n<p><b>getDescription:<\/b><\/p>\n<pre>VBA: Sub GetDescription(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef description)\r\nVB6: Function GetDescription(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getEnabled<\/b>:<\/p>\n<pre>VBA: Sub GetEnabled(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef enabled)\r\nVB6: Function GetEnabled(control as IRibbonControl)<span style=\"color: blue;\"> As Boolean<\/span><\/pre>\n<p><b>getImage<\/b>:<\/p>\n<pre>VBA: Sub GetImage(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef image)\r\nVB6: Function GetImage(control as IRibbonControl) as IPictureDisp<\/pre>\n<p><b>getImageMso<\/b>:<\/p>\n<pre>VBA: Sub GetImageMso(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef imageMso)\r\nVB6: Function GetImageMso(control as IRibbonControl) as String<\/pre>\n<p><b>getLabel<\/b>:<\/p>\n<pre>VBA: Sub GetLabel(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef label)\r\nVB6: Function GetLabel(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getKeytip<\/b>:<\/p>\n<pre>VBA: Sub GetKeytip (control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef label)\r\nVB6: Function GetKeytip (control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getSize<\/b>:<\/p>\n<pre>VBA: Sub GetSize(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef size)\r\nVB6: Function GetSize(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As <\/span>RibbonControlSize<\/pre>\n<p><b>getScreentip<\/b>:<\/p>\n<pre>VBA: Sub GetScreentip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef screentip)\r\nVB6: Function GetScreentip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getSupertip<\/b>:<\/p>\n<pre>VBA: Sub GetSupertip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef supertip)\r\nVB6: Function GetSupertip(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As String<\/span><\/pre>\n<p><b>getVisible<\/b>:<\/p>\n<pre>VBA: Sub GetVisible(control<span style=\"color: blue;\"> As <\/span>IRibbonControl, ByRef visible)\r\nVB6: Function GetVisible(control<span style=\"color: blue;\"> As <\/span>IRibbonControl)<span style=\"color: blue;\"> As Boolean<\/span><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Wer Anwendungen programmiert, die das Ribbon anpassen, m&ouml;chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f&uuml;r die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf&uuml;gen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[66022022,662022,44000027,44000036],"tags":[],"yst_prominent_words":[],"class_list":["post-55000314","post","type-post","status-publish","format-standard","hentry","category-66022022","category-662022","category-Excel_programmieren","category-Ribbon_programmieren"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Wer Anwendungen programmiert, die das Ribbon anpassen, m\u00f6chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f\u00fcr die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf\u00fcgen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Andr\u00e9 Minhorst\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"de_DE\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Visual Basic Entwickler - Das Magazin f\u00fcr Datenbankentwickler auf Basis von Visual Studio und Co.\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Ribbon-Signaturen f\u00fcr VBA, VB6 und twinBASIC - Visual Basic Entwickler\" \/>\n\t\t<meta property=\"og:description\" content=\"Wer Anwendungen programmiert, die das Ribbon anpassen, m\u00f6chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f\u00fcr die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf\u00fcgen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/datenbankentwickler.net\/wp-content\/uploads\/2022\/08\/cropped-header_vbe-1.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/datenbankentwickler.net\/wp-content\/uploads\/2022\/08\/cropped-header_vbe-1.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-03-02T17:05:46+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"-001-11-30T00:00:00+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Ribbon-Signaturen f\u00fcr VBA, VB6 und twinBASIC - Visual Basic Entwickler\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Wer Anwendungen programmiert, die das Ribbon anpassen, m\u00f6chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f\u00fcr die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf\u00fcgen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/datenbankentwickler.net\/wp-content\/uploads\/2022\/08\/cropped-header_vbe-1.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#blogposting\",\"name\":\"Ribbon-Signaturen f\\u00fcr VBA, VB6 und twinBASIC - Visual Basic Entwickler\",\"headline\":\"Ribbon-Signaturen f&uuml;r VBA, VB6 und twinBASIC\",\"author\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/author\\\/andreminhorst-com\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/vbentwickler.de\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/cropped-header_vbe-1.png\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/#articleImage\",\"width\":664,\"height\":225},\"datePublished\":\"2022-04-01T00:00:00+00:00\",\"dateModified\":\"-0001-11-30T00:00:00+00:00\",\"inLanguage\":\"de-DE\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#webpage\"},\"articleSection\":\"2\\\/2022, 2022, Excel programmieren, Ribbon programmieren\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vbentwickler.de\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/category\\\/2022\\\/#listItem\",\"name\":\"2022\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/category\\\/2022\\\/#listItem\",\"position\":2,\"name\":\"2022\",\"item\":\"https:\\\/\\\/vbentwickler.de\\\/category\\\/2022\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/category\\\/2022\\\/2\\\/2022\\\/#listItem\",\"name\":\"2\\\/2022\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/category\\\/2022\\\/2\\\/2022\\\/#listItem\",\"position\":3,\"name\":\"2\\\/2022\",\"item\":\"https:\\\/\\\/vbentwickler.de\\\/category\\\/2022\\\/2\\\/2022\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#listItem\",\"name\":\"Ribbon-Signaturen f&uuml;r VBA, VB6 und twinBASIC\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/category\\\/2022\\\/#listItem\",\"name\":\"2022\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#listItem\",\"position\":4,\"name\":\"Ribbon-Signaturen f&uuml;r VBA, VB6 und twinBASIC\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/category\\\/2022\\\/2\\\/2022\\\/#listItem\",\"name\":\"2\\\/2022\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/#organization\",\"name\":\"Datenbankentwickler\",\"description\":\"Das Magazin f\\u00fcr Datenbankentwickler auf Basis von Visual Studio und Co.\",\"url\":\"https:\\\/\\\/vbentwickler.de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/vbentwickler.de\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/cropped-header_vbe-1.png\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#organizationLogo\",\"width\":664,\"height\":225},\"image\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/author\\\/andreminhorst-com\\\/#author\",\"url\":\"https:\\\/\\\/vbentwickler.de\\\/author\\\/andreminhorst-com\\\/\",\"name\":\"Andr\\u00e9 Minhorst\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1b9d010cf1716692cb9c34f21554e07d17d461acaea5b61b8cb21cbec678d48a?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Andr\\u00e9 Minhorst\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#webpage\",\"url\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/\",\"name\":\"Ribbon-Signaturen f\\u00fcr VBA, VB6 und twinBASIC - Visual Basic Entwickler\",\"description\":\"Wer Anwendungen programmiert, die das Ribbon anpassen, m\\u00f6chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f\\u00fcr die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf\\u00fcgen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.\",\"inLanguage\":\"de-DE\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/author\\\/andreminhorst-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/author\\\/andreminhorst-com\\\/#author\"},\"datePublished\":\"2022-04-01T00:00:00+00:00\",\"dateModified\":\"-0001-11-30T00:00:00+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/#website\",\"url\":\"https:\\\/\\\/vbentwickler.de\\\/\",\"name\":\"Datenbankentwickler\",\"description\":\"Das Magazin f\\u00fcr Datenbankentwickler auf Basis von Visual Studio und Co.\",\"inLanguage\":\"de-DE\",\"publisher\":{\"@id\":\"https:\\\/\\\/vbentwickler.de\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Ribbon-Signaturen f\u00fcr VBA, VB6 und twinBASIC - Visual Basic Entwickler","description":"Wer Anwendungen programmiert, die das Ribbon anpassen, m\u00f6chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f\u00fcr die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf\u00fcgen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.","canonical_url":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#blogposting","name":"Ribbon-Signaturen f\u00fcr VBA, VB6 und twinBASIC - Visual Basic Entwickler","headline":"Ribbon-Signaturen f&uuml;r VBA, VB6 und twinBASIC","author":{"@id":"https:\/\/vbentwickler.de\/author\/andreminhorst-com\/#author"},"publisher":{"@id":"https:\/\/vbentwickler.de\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/vbentwickler.de\/wp-content\/uploads\/2022\/08\/cropped-header_vbe-1.png","@id":"https:\/\/vbentwickler.de\/#articleImage","width":664,"height":225},"datePublished":"2022-04-01T00:00:00+00:00","dateModified":"-0001-11-30T00:00:00+00:00","inLanguage":"de-DE","mainEntityOfPage":{"@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#webpage"},"isPartOf":{"@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#webpage"},"articleSection":"2\/2022, 2022, Excel programmieren, Ribbon programmieren"},{"@type":"BreadcrumbList","@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/vbentwickler.de#listItem","position":1,"name":"Home","item":"https:\/\/vbentwickler.de","nextItem":{"@type":"ListItem","@id":"https:\/\/vbentwickler.de\/category\/2022\/#listItem","name":"2022"}},{"@type":"ListItem","@id":"https:\/\/vbentwickler.de\/category\/2022\/#listItem","position":2,"name":"2022","item":"https:\/\/vbentwickler.de\/category\/2022\/","nextItem":{"@type":"ListItem","@id":"https:\/\/vbentwickler.de\/category\/2022\/2\/2022\/#listItem","name":"2\/2022"},"previousItem":{"@type":"ListItem","@id":"https:\/\/vbentwickler.de#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/vbentwickler.de\/category\/2022\/2\/2022\/#listItem","position":3,"name":"2\/2022","item":"https:\/\/vbentwickler.de\/category\/2022\/2\/2022\/","nextItem":{"@type":"ListItem","@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#listItem","name":"Ribbon-Signaturen f&uuml;r VBA, VB6 und twinBASIC"},"previousItem":{"@type":"ListItem","@id":"https:\/\/vbentwickler.de\/category\/2022\/#listItem","name":"2022"}},{"@type":"ListItem","@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#listItem","position":4,"name":"Ribbon-Signaturen f&uuml;r VBA, VB6 und twinBASIC","previousItem":{"@type":"ListItem","@id":"https:\/\/vbentwickler.de\/category\/2022\/2\/2022\/#listItem","name":"2\/2022"}}]},{"@type":"Organization","@id":"https:\/\/vbentwickler.de\/#organization","name":"Datenbankentwickler","description":"Das Magazin f\u00fcr Datenbankentwickler auf Basis von Visual Studio und Co.","url":"https:\/\/vbentwickler.de\/","logo":{"@type":"ImageObject","url":"https:\/\/vbentwickler.de\/wp-content\/uploads\/2022\/08\/cropped-header_vbe-1.png","@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#organizationLogo","width":664,"height":225},"image":{"@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/vbentwickler.de\/author\/andreminhorst-com\/#author","url":"https:\/\/vbentwickler.de\/author\/andreminhorst-com\/","name":"Andr\u00e9 Minhorst","image":{"@type":"ImageObject","@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1b9d010cf1716692cb9c34f21554e07d17d461acaea5b61b8cb21cbec678d48a?s=96&d=mm&r=g","width":96,"height":96,"caption":"Andr\u00e9 Minhorst"}},{"@type":"WebPage","@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#webpage","url":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/","name":"Ribbon-Signaturen f\u00fcr VBA, VB6 und twinBASIC - Visual Basic Entwickler","description":"Wer Anwendungen programmiert, die das Ribbon anpassen, m\u00f6chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f\u00fcr die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf\u00fcgen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.","inLanguage":"de-DE","isPartOf":{"@id":"https:\/\/vbentwickler.de\/#website"},"breadcrumb":{"@id":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/#breadcrumblist"},"author":{"@id":"https:\/\/vbentwickler.de\/author\/andreminhorst-com\/#author"},"creator":{"@id":"https:\/\/vbentwickler.de\/author\/andreminhorst-com\/#author"},"datePublished":"2022-04-01T00:00:00+00:00","dateModified":"-0001-11-30T00:00:00+00:00"},{"@type":"WebSite","@id":"https:\/\/vbentwickler.de\/#website","url":"https:\/\/vbentwickler.de\/","name":"Datenbankentwickler","description":"Das Magazin f\u00fcr Datenbankentwickler auf Basis von Visual Studio und Co.","inLanguage":"de-DE","publisher":{"@id":"https:\/\/vbentwickler.de\/#organization"}}]},"og:locale":"de_DE","og:site_name":"Visual Basic Entwickler - Das Magazin f\u00fcr Datenbankentwickler auf Basis von Visual Studio und Co.","og:type":"article","og:title":"Ribbon-Signaturen f\u00fcr VBA, VB6 und twinBASIC - Visual Basic Entwickler","og:description":"Wer Anwendungen programmiert, die das Ribbon anpassen, m\u00f6chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f\u00fcr die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf\u00fcgen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.","og:url":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/","og:image":"https:\/\/datenbankentwickler.net\/wp-content\/uploads\/2022\/08\/cropped-header_vbe-1.png","og:image:secure_url":"https:\/\/datenbankentwickler.net\/wp-content\/uploads\/2022\/08\/cropped-header_vbe-1.png","article:published_time":"2023-03-02T17:05:46+00:00","article:modified_time":"-001-11-30T00:00:00+00:00","twitter:card":"summary_large_image","twitter:title":"Ribbon-Signaturen f\u00fcr VBA, VB6 und twinBASIC - Visual Basic Entwickler","twitter:description":"Wer Anwendungen programmiert, die das Ribbon anpassen, m\u00f6chte die benutzerdefinierten Ribbon-Steuerelemente auch mit entsprechenden Callback-Prozeduren ausstatten. Dieser Artikel liefert eine Zusammenfassung der Ribbon-Signaturen f\u00fcr die Callback-Funktionen unter VBA und Visual Basic 6 beziehungsweise twinBASIC. Die VBA-Signaturen nutzen wir, wenn wir Ribbon-Erweiterungen direkt zu den mit den Office-Anwendungen erstellten Ribbonanpassungen hinzuf\u00fcgen wollen. Erstellen wir hingegen COM-Add-Ins mit VB6 oder twinBASIC, nutzen wir die alternativen Signaturen.","twitter:image":"https:\/\/datenbankentwickler.net\/wp-content\/uploads\/2022\/08\/cropped-header_vbe-1.png"},"aioseo_meta_data":{"post_id":"55000314","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2024-01-30 16:32:43","updated":"2026-05-16 08:58:56","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/vbentwickler.de\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/vbentwickler.de\/category\/2022\/\" title=\"2022\">2022<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/vbentwickler.de\/category\/2022\/2\/2022\/\" title=\"2\/2022\">2\/2022<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tRibbon-Signaturen f\u00fcr VBA, VB6 und twinBASIC\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/vbentwickler.de"},{"label":"2022","link":"https:\/\/vbentwickler.de\/category\/2022\/"},{"label":"2\/2022","link":"https:\/\/vbentwickler.de\/category\/2022\/2\/2022\/"},{"label":"Ribbon-Signaturen f&uuml;r VBA, VB6 und twinBASIC","link":"https:\/\/vbentwickler.de\/RibbonSignaturen_fuer_VBA_VB6_und_twinBASIC\/"}],"_links":{"self":[{"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/posts\/55000314","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/comments?post=55000314"}],"version-history":[{"count":1,"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/posts\/55000314\/revisions"}],"predecessor-version":[{"id":88072052,"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/posts\/55000314\/revisions\/88072052"}],"wp:attachment":[{"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/media?parent=55000314"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/categories?post=55000314"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/tags?post=55000314"},{"taxonomy":"yst_prominent_words","embeddable":true,"href":"https:\/\/vbentwickler.de\/data\/wp\/v2\/yst_prominent_words?post=55000314"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}