summaryrefslogtreecommitdiffstats
path: root/AccountValue/Program.cs
diff options
context:
space:
mode:
authorSebastian2011-01-28 11:03:08 +0100
committerSebastian2011-01-28 11:03:08 +0100
commit4b6dc1d93f19cad0e096c1632b660aecb0bc3673 (patch)
tree4a4c18c0f311e013e56ba113d161b6b1e87a8eaa /AccountValue/Program.cs
downloadlogintool-4b6dc1d93f19cad0e096c1632b660aecb0bc3673.tar.gz
logintool-4b6dc1d93f19cad0e096c1632b660aecb0bc3673.tar.xz
logintool-4b6dc1d93f19cad0e096c1632b660aecb0bc3673.zip
initial import of logintool svn
Diffstat (limited to 'AccountValue/Program.cs')
-rw-r--r--AccountValue/Program.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/AccountValue/Program.cs b/AccountValue/Program.cs
new file mode 100644
index 0000000..0761a81
--- /dev/null
+++ b/AccountValue/Program.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Windows.Forms;
+using System.Threading;
+
+namespace AccountValue
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.Run(new Form1());
+ }
+ }
+} \ No newline at end of file