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.
2 using System.Collections.Generic;
4 using System.Threading.Tasks;
5 using System.Windows.Forms;
7 namespace SharpDisplayManager
11 public static MainForm iMainForm;
13 /// The main entry point for the application.
18 Application.EnableVisualStyles();
19 Application.SetCompatibleTextRenderingDefault(false);
20 iMainForm = new MainForm();
21 Application.Run(iMainForm);