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.
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.
This fix worked on our older Infragistics version for error in certain Windows 10 versions and Windows Server 2016
Faulting module name: clr.dll, version: 4.7.2650.0, time stamp: 0x5ab1cd09
Exception code: 0xc00000fd
Fault offset: 0x0007cfe2
Faulting process id: 0x49c
Faulting module path: C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll
But in Windows Server 2016 if you drag the scrollbar with the mouse (up or down) the popup date value moves across the screen.
I recommend submitting this as a new thread with an example that demonstrates the issue so that we may look into what is happening. Also be sure that you are testing the latest version of the windows forms toolset as the relevant bug fix for this thread was in 2013 which is a few years before Windows Server 2016 was released.