ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/AnywhereTS-MSSQL/trunk/TSControlPanel/Program.cs
Revision: 4
Committed: Wed Jul 11 14:19:13 2012 UTC (11 years, 4 months ago) by william
File size: 714 byte(s)
Log Message:
imported from https://anywherets.svn.sourceforge.net/svnroot/anywherets/trunk/
Revision: 1
Author: beartown
Date: 3:10:40 AM, Monday, June 21, 2010
Message:
First upload. Still todo in order to get a fully working product: Replace Thinstation images with vanilla Thinstation, modify ImageDesigntimeConfig.cs, ImageRuntimeConfig.cs in order to support the Thinstation image

File Contents

# User Rev Content
1 william 4 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     }