Server/Program.cs
author sl
Fri, 15 Aug 2014 10:20:01 +0200
changeset 30 c375286d1a1c
parent 17 19c1aaf900dc
child 31 f19b04646b6a
permissions -rw-r--r--
Still trying to setup WCF for us to work nicely.
Now using multi threading and reliable session.
Implementing thread safe functions where needed.
Enforcing session mode.
Fixing bug in marquee label as we forgot to reset current position when text is changed.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Threading.Tasks;
     5 using System.Windows.Forms;
     6 
     7 namespace SharpDisplayManager
     8 {
     9     static class Program
    10     {
    11         public static MainForm iMainForm;
    12         /// <summary>
    13         /// The main entry point for the application.
    14         /// </summary>
    15         [STAThread]
    16         static void Main()
    17         {
    18             Application.EnableVisualStyles();
    19             Application.SetCompatibleTextRenderingDefault(false);
    20             iMainForm = new MainForm();
    21             Application.Run(iMainForm);
    22         }
    23     }
    24 }