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
1040
UltraFormManager bug?
posted

I create MyFormManager Usercontrol.

=>

Public Class MyFormManager
    Inherits Infragistics.Win.UltraWinForm.UltraFormManager

End Class

runtime... An error flies when you doubleclick on the icon.

Parents
No Data
Reply
  • 23930
    Suggested Answer
    Offline posted

    Hello Min,

    Thank you for posting in our forums.

    You need to add a contstructor to your MyFormsManager class which accepts IContainer parameter and calls MyBase.New overload which accepts IContainer:

        Public Sub New(container As IContainer)

            MyBase.New(container)

        End Sub

    Then you may need to delete and re-add your MyFormsManager instances in order for the designer to start using this overload.

    I have attached a sample demonstrating this suggestion.

    Please let me know if you have any additional questions.

    WFM_InheritedExceptionFix.zip
Children