source: Scheduling/trunk/cs/EnhancedPrintPreview/PrintPreviewDemo/Program.cs@ 1246

Last change on this file since 1246 was 1246, checked in by Sam Habiel, 13 years ago

Adding Enhanced Print Preview to Repo

File size: 468 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Windows.Forms;
4
5namespace PrintPreviewDemo {
6 static class Program {
7 /// <summary>
8 /// The main entry point for the application.
9 /// </summary>
10 [STAThread]
11 static void Main() {
12 Application.EnableVisualStyles();
13 Application.SetCompatibleTextRenderingDefault(false);
14 Application.Run(new Form1());
15 }
16 }
17}
Note: See TracBrowser for help on using the repository browser.