Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
45
Stackoverflow exception
posted

Hi 

I have a UltraWinSchedule control and it is working without any issue in Windows 7 machines. However in windows 10 machines we are getting stackoverflow exception. In the call stack I found   

Infragistics4.Win.UltraWinSchedule.v11.2.dll!Infragistics.Win.UltraWinSchedule.UltraMonthViewSingleBase.MonthViewSingleAccessibleObjectBase.GetFocused() Unknown

This call is in loop.

Can you please point me in the right direction.

Parents
No Data
Reply
  • 20
    Offline posted

    Did you ever solved this problem with the latest released? I have the same issue on some Windows 10 machine but not all of them.

    I have been able to avoid this Exception by disabling the AccessibleObject in a subclass of UltraMonthViewSingle.

    class UltraMonthViewSingleWithoutAccessibility : Infragistics.Win.UltraWinSchedule.UltraMonthViewSingle
    {
        protected override AccessibleObject CreateAccessibilityInstance()
        {
            return null;
        }
    }

    Then, I use this class instead of UltraMonthViewSingle.

Children