I'm getting this error: Invoke or BeginInvoke cannot be called on a control until the window handle has been created.
On these lines:
        m_SplashForm.Invoke(
                new SplashStatusChangedHandle(delegate(string str) { m_SplashInterface.SetStatusInfo(str); }),
                new object[] { value }
            );
I'm trying to use Application.Exit()
Can anyone help me?
Thanks in advance