ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/AnywhereTS-MSSQL/branches/anywherets.r2.sourceforge/TSControlPanel/Program.cs
Revision: 5
Committed: Wed Jul 11 15:09:09 2012 UTC (11 years, 5 months ago) by william
File size: 714 byte(s)
Log Message:
Created branch: anywherets.r2.sourceforge
Snapshot of: https://anywherets.svn.sourceforge.net/svnroot/anywherets/trunk/
at Revision 2

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Windows.Forms;
4
5 namespace AnywhereTS
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
18 frmClientProperties objCustomDialogBox = new frmClientProperties();
19 objCustomDialogBox.dialogMode = frmClientProperties.ATSClientMode.CONTROL_PANEL; // Select the mode to run the form in.
20 Application.Run(objCustomDialogBox);
21 }
22 }
23 }