vote up 1 vote down star

Hi, we have a .NET / C# application that runs on multiple machines without problems. When installing to one (evil :-) XP machine, the installation of the software succeeds fine, but when the app is started, nothing happens ... I mean, really nothing happens, no errors, no splash, no windows ... Yet the app is visible as a process in task manager ??

Does anyone have a clue of what's going on, or does someone have some kind of method to check what the problem is ??

thanks people !

this is our code that starts the app:

class SingleInstanceApplication : WindowsFormsApplicationBase
{

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main(string[] args)
    {

        // Setup unhandled exception handlers
        AppDomain.CurrentDomain.UnhandledException +=  // CLR
           new System.UnhandledExceptionEventHandler(OnUnhandledException);

        Application.ThreadException += // Windows Forms
           new System.Threading.ThreadExceptionEventHandler(
               OnGuiUnhandedException);



        try
        {

            ApplicatiePaths.SetDataDirectoryOnFirstLoad();

            Application.EnableVisualStyles();//false;// 
            Application.DoEvents();// Application.DoEvents();
            Componenten.Main.Logic.RenderModes.ApplyRenderMode();

            //Initing code
            //-----END INIT BLOK ------------------


            // The single-instance code is going to save the command line 
            // arguments in this member variable before opening the first instance
            // of the app.
            SingleInstanceApplication app = new SingleInstanceApplication();
            app.Run(args);
        }
        catch (OleDbException e)
        {
			string msg = "xx";
            Errors.CatchErrorWithCustomMessage(msg, e);
        }
        catch (Exception exc)
        {
            Errors.CatchError("SingleApp Main", exc);
        }

    }


    public static void ExitApplication()
    {
        if( GlobalVars.mainForm != null )
            GlobalVars.mainForm.Close();

        Application.Exit();
    }

    private static void TryDBConnection()
    {
        string constr = Properties.Settings.Default.MainConnectionString;
        int start = constr.IndexOf("Data Source=") + "Data Source=".Length;
        int end = constr.IndexOf(";", start);
        string dataDir = AppDomain.CurrentDomain.GetData("DataDirectory").ToString();
        string dbPath = constr.Substring(start, end - start).Replace("|DataDirectory|", dataDir);
        if (!System.IO.File.Exists(dbPath))
        {
            DialogResult dlgResult = MessageBox.Show( Resources.MyResources.DBBestaatNiet, "Database", MessageBoxButtons.YesNoCancel );
            if (dlgResult == DialogResult.Yes)
            {
                Componenten.Main.Logic.NetwerkLogic.ResetDBMap();
                Application.Exit();
            }
            else
            {
                Application.Exit();
            }
        }
    }

    public SingleInstanceApplication()
    {

        try
        {

            // Make this a single-instance application
            this.IsSingleInstance = true;

            // There are some other things available in the VB application model, for
            // instance the shutdown style:
            this.ShutdownStyle = Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses; 

            // Add StartupNextInstance handler
            this.StartupNextInstance += new StartupNextInstanceEventHandler(this.SIApp_StartupNextInstance);
        }
        catch (Exception exc)
        {
            Errors.CatchError("SingleApp: constructor", exc);
        }
    }


    // CLR unhandled exception
    private static void OnUnhandledException(Object sender,
       System.UnhandledExceptionEventArgs e)
    {
        HandleUnhandledException(e.ExceptionObject);
    }

    // Windows Forms unhandled exception
    private static void OnGuiUnhandedException(Object sender,
       System.Threading.ThreadExceptionEventArgs e)
    {
        HandleUnhandledException(e.Exception);
    }

    static void HandleUnhandledException(Object o)
    {
        Errors.CatchError("Unhandled exception", o as Exception);
    }


    /// <summary>
    /// We are responsible for creating the application's main form in this override.
    /// </summary>
    protected override void OnCreateMainForm()
    {
        try
        {
            // Create an instance of the main form and set it in the application; 
            // but don't try to run it.
            this.MainForm = new MainForm();
            GlobalVars.mainForm = (MainForm)this.MainForm;


            // We want to pass along the command-line arguments to this first instance

            // Allocate room in our string array
            ((MainForm)this.MainForm).Args = new string[this.CommandLineArgs.Count];

            // And copy the arguments over to our form
            this.CommandLineArgs.CopyTo(((MainForm)this.MainForm).Args, 0);
        }
        catch (Exception exc)
        {
            Errors.CatchError("SingleApp: OnCreateMainForm ", exc);
        }

    }

    /// <summary>
    /// This is called for additional instances. The application model will call this 
    /// function, and terminate the additional instance when this returns.
    /// </summary>
    /// <param name="eventArgs"></param>
    protected void SIApp_StartupNextInstance(object sender, 
        StartupNextInstanceEventArgs eventArgs)
    {
        try
        {
            // Copy the arguments to a string array
            string[] args = new string[eventArgs.CommandLine.Count];
            eventArgs.CommandLine.CopyTo(args, 0);

            // Create an argument array for the Invoke method
            object[] parameters = new object[2];
            parameters[0] = this.MainForm;
            parameters[1] = args;

            // Need to use invoke to b/c this is being called from another thread.
            this.MainForm.Invoke(new MainForm.ProcessParametersDelegate(
                ((MainForm)this.MainForm).ProcessParameters), 
                parameters );
        }
        catch (Exception exc)
        {
            Errors.CatchError("SIApp_StartupNextInstance", exc);
        }
    }
}
flag

1 Answer

vote up 0 vote down

You could check the Application event log in eventviewer. I believe if there are any exceptions not being handled in the app the framework will log them there.

If you have a code profiling tool, you could run the app under the profile tool then check to see (indirectly) which code is running. In fact, if your application is "hanging" before running Application.Run(new Form1()); that could be the problem.

Can you post the content of your Program class?

Maybe some sort of virus scanner or local firewall on that machine is preventing the app from doing certain things before or during opening the forms?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.