Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Good Morning,

Iam new in developing Outlook Addins, and I try to disable print functions in dependence of the activated folder. I use a testfolder named "Test" and when I click on it, the print functionality of the ribbon is disabled.

the addin works, but when i change more than 10 or 15 times the folder the print functionality freeze and for all folders the print functionality is disabled or enabled.

When I debug the solution everything works fine, but when the Addin runs without any debugging after 10 or 15 switches the print functionality freeze and can“t changed again.

Addin.cs:

    protected override Office.IRibbonExtensibility CreateRibbonExtensibilityObject()
    {
        return new CustomRibbon();
    }

CustomRibbon.cs

    public CustomRibbon()
    {
        this._hasEvent = false;
    }

    public bool IsPrintEnabled(IRibbonControl control)
    {
        Explorer target = GetExplorer(control);
        MAPIFolder currentFolder = target.CurrentFolder;

        if (!this._hasEvent)
        {
            target.FolderSwitch += new ExplorerEvents_10_FolderSwitchEventHandler(InvalidateRibbon);
            this._hasEvent = true;
        }

        if (((dynamic)currentFolder).FolderPath.ToString().StartsWith(@"\\" + Properties.Settings.Default.CRMTest))
        {
            return false;
        }
        else
            return true;
    }

    private void InvalidateRibbon()
    {
        ribbon.Invalidate();
    }

    private Explorer GetExplorer(IRibbonControl control)
    {
        dynamic context = control.Context;
        Explorer explorer = context.Parent as Explorer;
        if (explorer != null)
        {
            return explorer;
        }
        return ((Application)context.Parent).ActiveExplorer();
    }

CustomRibbon.xml

I hope that anyone can help me with this problem.

Cheers, Sebastian

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.