http://bugzilla.novell.com/show_bug.cgi?id=566042

http://bugzilla.novell.com/show_bug.cgi?id=566042#c0


           Summary: Darwin: Unable to execute Application.Run() more than
                    once
    Classification: Mono
           Product: Mono: Class Libraries
           Version: 2.6.x
          Platform: x86
        OS/Version: Mac OS X 10.5
            Status: NEW
          Severity: Major
          Priority: P5 - None
         Component: Windows.Forms
        AssignedTo: [email protected]
        ReportedBy: [email protected]
         QAContact: [email protected]
          Found By: Development
           Blocker: No


Description of Problem:
After starting a window application with "Application.Run()", closing the form
an starting another form with "Application.Run()" the form will only be shown
and the function call will immediately return.


Steps to reproduce the problem:
1. Compile and start the following code:

static void Main()
        {
            Form f = new Form();
            f.Text = "Form1";
            Application.Run(f);


            Form f2 = new Form();
            f2.Text = "Form2";
            Application.Run(f2);

            Form f3 = new Form();
            f3.Text = "Form3";
            Application.Run(f3);

            //System.Threading.Thread.Sleep(3000);
        }


Actual Results:
The function call Application.Run(f2) + Application.Run(f3) return immediately 

Expected Results:
The function calls should only return if the forms are closed


How often does this happen? 
Always

Additional Information:

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to