StrataFrame Forum

Wait Window Problem with User control and Form load

http://forum.strataframe.net/Topic18362.aspx

By Paul Chase - 8/7/2008

I have a issue where the wait window is stopping the application. It doesn't seem to throw an error or anything just stops code execution at the show wait window.

I reproduced it in a simple sample application that used the SF sample DB.  If you need anything else let me know

Thanks

Paul

By Ivan George Borges - 8/7/2008

Hey Paul!

Would you like to try this code, instead of using the form load?

    Protected Overrides Sub OnShown(ByVal e As System.EventArgs)
        MyBase.OnShown(e)
        Me.UserControl11.FillData()
    End Sub

By Paul Chase - 8/7/2008

Thank's Ivan that seems to work.