summaryrefslogtreecommitdiff
path: root/src/app/PlayingWithActiveReports.Win.UI/Program.cs
diff options
context:
space:
mode:
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