home *** CD-ROM | disk | FTP | other *** search
/ Programming in Microsoft Windows with C# / Programacion en Microsoft Windows con C#.iso / Original Code / Hello Windows Forms / RunFormBadly / RunFormBadly.cs next >
Encoding:
Text File  |  2001-01-15  |  391 b   |  18 lines

  1. //-------------------------------------------
  2. // RunFormBadly.cs ⌐ 2001 by Charles Petzold
  3. //-------------------------------------------
  4. using System.Windows.Forms;
  5.  
  6. class RunFormBadly
  7. {
  8.      public static void Main()
  9.      {
  10.           Form form = new Form();
  11.  
  12.           form.Text = "Not a Good Idea...";
  13.           form.Visible = true;
  14.  
  15.           Application.Run();
  16.      }
  17. }
  18.