blob: f7baa5431b36810871919c7f219823dcf756d3d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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( ) );
}
}
}
|