Well it seems like Goal 2 was the easiest one. All that I had to do was add a timer to “ThisApplication” class and assign the properties. I wasn’t sure if there was going to be a catch that prevented me from using a timer. Here’s the gist of the code that I used as a test.
public partial class ThisApplication
{
private Timer SynchTimer;
private void ThisApplication_Startup(object sender, System.EventArgs e)
{
SynchTimer = new Timer();
SynchTimer.Interval = 10000;//A ten second test interval.
SynchTimer.Tick += SynchTimer_Tick;
SynchTimer.Enabled = true;
string
RestrictString = “[Start]
Also here is Calendar Goal 1 in case you missed what I am trying to do here.

