[Mono-bugs] [Bug 67257][Nor] New - SWF applications exit without displaying anything
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 30 Sep 2004 16:42:34 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by paul@all-the-johnsons.co.uk.
http://bugzilla.ximian.com/show_bug.cgi?id=67257
--- shadow/67257 2004-09-30 16:42:33.000000000 -0400
+++ shadow/67257.tmp.8087 2004-09-30 16:42:34.000000000 -0400
@@ -0,0 +1,53 @@
+Bug#: 67257
+Product: Mono: Class Libraries
+Version: unspecified
+OS:
+OS Details: FC3t2
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Windows.Forms
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: paul@all-the-johnsons.co.uk
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: SWF applications exit without displaying anything
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+Some SWF applications exit without displaying anything
+
+Steps to reproduce the problem:
+1. Compile a file which does something like display just a messagebox
+2.
+3.
+
+Actual Results:
+Nothing happens, the program appears to just exit
+
+Expected Results:
+A MessageBox should appear
+
+How often does this happen?
+Often
+
+Additional Information:
+It can be seen with code similar to this
+
+using System;
+using System.Windows.Forms;
+
+namespace WelcomeGUI
+{
+ class Welcome4
+ {
+ static void Main( string[] args )
+ {
+ MessageBox.Show( "Welcome\nto\nC#\nprogramming!" );
+ }
+ }
+}