home *** CD-ROM | disk | FTP | other *** search
/ 61.19.244.139 / 61.19.244.139.zip / 61.19.244.139 / Compulsory.Reports / Program.cs < prev   
Text File  |  2013-06-07  |  390b  |  18 lines

  1. ∩╗┐using System;
  2. using System.Collections.Generic;
  3. using System.Windows.Forms;
  4.  
  5. namespace Compulsory.Reports
  6. {
  7.     static class Program
  8.     {
  9.         [STAThread]
  10.         static void Main()
  11.         {
  12.             Application.EnableVisualStyles();
  13.             Application.SetCompatibleTextRenderingDefault(false);
  14.             //Application.Run(new Form1());
  15.         }
  16.     }
  17. }
  18.