54070e6513
Also added a function to run the rules on demand
20 lines
419 B
C#
20 lines
419 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace OutlookCaseHelper
|
|
{
|
|
internal static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
try
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new Form1());
|
|
}
|
|
catch { }
|
|
}
|
|
}
|
|
} |