summaryrefslogtreecommitdiff
path: root/src/app/PlayingWithActiveReports.Win.UI/Program.cs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2007-11-02 17:03:42 -0600
committermo khan <mo@mokhan.ca>2007-11-02 17:03:42 -0600
commit36ffa9f174c831146ca5630a41b75c9d213f3db6 (patch)
tree3ba71964656b385995bb9557c87a05b131348ddf /src/app/PlayingWithActiveReports.Win.UI/Program.cs
import from svntrunkmain
Diffstat (limited to 'src/app/PlayingWithActiveReports.Win.UI/Program.cs')
-rw-r--r--src/app/PlayingWithActiveReports.Win.UI/Program.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/app/PlayingWithActiveReports.Win.UI/Program.cs b/src/app/PlayingWithActiveReports.Win.UI/Program.cs
new file mode 100644
index 0000000..f7baa54
--- /dev/null
+++ b/src/app/PlayingWithActiveReports.Win.UI/Program.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Windows.Forms;
+
+namespace PlayingWithActiveReports.Win.UI {
+ internal static class Program {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ private static void Main( ) {
+ Application.EnableVisualStyles( );
+ Application.SetCompatibleTextRenderingDefault( false );
+ //Application.Run( new ResultsReportView( ) );
+ Application.Run( new SimpleReportView( ) );
+ }
+ }
+} \ No newline at end of file