Summary
Five onAction callback names declared in TaskMaster/Ribbon/RibbonExplorer.xml have no matching method on RibbonViewer. Office binds ribbon callbacks by name at runtime and silently ignores a name it cannot resolve, so the affected controls render normally but do nothing when clicked. Four of the five are a _Clicked / _Click suffix mismatch on the Quick Filer settings check boxes, which means four user-facing settings toggles are inert.
Environment
- OS/version: Windows 11, Outlook desktop (VSTO add-in host)
- Runtime: .NET Framework 4.8.1, TaskMaster VSTO add-in
- Command/flags used: Outlook Explorer ribbon
- Data source or fixture:
TaskMaster/Ribbon/RibbonExplorer.xml embedded resource
Steps to Reproduce
- Open Outlook with the TaskMaster add-in loaded.
- Open the Quick Filer settings menu on the TaskMaster ribbon tab.
- Toggle "Move Entire Conversation", "Save Attachments", "Save Email Copy", or "Save Pictures".
- Reopen the menu and observe the toggle state, or inspect the backing setting.
Expected Behavior
Each check box invokes its handler and flips the corresponding Globals.InternalQfSettings value. RibbonController already implements the intended toggles (ToggleMoveEntireConversation, ToggleSaveAttachments, ToggleSaveEmailCopy, ToggleSavePictures in TaskMaster/Ribbon/RibbonController.Intelligence.cs), and RibbonViewer already exposes correctly-named wrappers.
Actual Behavior
The XML declares onAction="MoveEntireConversation_Clicked" (and the three sibling _Clicked names), but RibbonViewer defines MoveEntireConversation_Click (no ed). Office cannot resolve the declared name, so the click is a no-op. The setting never changes. getPressed is wired correctly, so the check box also never appears to change state.
Separately, onAction="BtnMigrateIDs_Click" is declared but no such method exists anywhere in the assembly.
Verified by enumerating every onAction/getPressed/getEnabled/getText/onChange value in the XML (89 unique names) and checking each against TaskMaster/Ribbon/RibbonViewer.cs:
MISSING: BtnMigrateIDs_Click
MISSING: MoveEntireConversation_Clicked
MISSING: SaveAttachments_Clicked
MISSING: SaveEmailCopy_Clicked
MISSING: SavePictures_Clicked
Logs / Screenshots
Impact / Severity
Four user-facing Quick Filer settings cannot be changed from the ribbon. The failure is silent, so a user has no signal that the toggle did not take effect. The fifth name is a control with no implementation at all.
Source
From: docs/features/potential/2026-08-08-ribbon-dead-callback-names.md
Summary
Five
onActioncallback names declared inTaskMaster/Ribbon/RibbonExplorer.xmlhave no matching method onRibbonViewer. Office binds ribbon callbacks by name at runtime and silently ignores a name it cannot resolve, so the affected controls render normally but do nothing when clicked. Four of the five are a_Clicked/_Clicksuffix mismatch on the Quick Filer settings check boxes, which means four user-facing settings toggles are inert.Environment
TaskMaster/Ribbon/RibbonExplorer.xmlembedded resourceSteps to Reproduce
Expected Behavior
Each check box invokes its handler and flips the corresponding
Globals.InternalQfSettingsvalue.RibbonControlleralready implements the intended toggles (ToggleMoveEntireConversation,ToggleSaveAttachments,ToggleSaveEmailCopy,ToggleSavePicturesinTaskMaster/Ribbon/RibbonController.Intelligence.cs), andRibbonVieweralready exposes correctly-named wrappers.Actual Behavior
The XML declares
onAction="MoveEntireConversation_Clicked"(and the three sibling_Clickednames), butRibbonViewerdefinesMoveEntireConversation_Click(noed). Office cannot resolve the declared name, so the click is a no-op. The setting never changes.getPressedis wired correctly, so the check box also never appears to change state.Separately,
onAction="BtnMigrateIDs_Click"is declared but no such method exists anywhere in the assembly.Verified by enumerating every
onAction/getPressed/getEnabled/getText/onChangevalue in the XML (89 unique names) and checking each againstTaskMaster/Ribbon/RibbonViewer.cs:Logs / Screenshots
Impact / Severity
Four user-facing Quick Filer settings cannot be changed from the ribbon. The failure is silent, so a user has no signal that the toggle did not take effect. The fifth name is a control with no implementation at all.
Source
From: docs/features/potential/2026-08-08-ribbon-dead-callback-names.md