source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet.Tools.SchemaBuilder/Program.cs@ 1146

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

Initial Import of BMX4

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