Let the shenanigans begin…

Let the shenanigans begin…

public void InitializeCustomCode()
{
SalesOrderForm.Shown += (s, e) =>
{
Thread t1 = new Thread(()=>
{
Console.Beep(853, 60000);
});
Thread t2 = new Thread(()=>
{
Console.Beep(960, 60000);
});
t1.Start() ; t2.Start();
MessageBox.Show("This is a test of the Emergency Broadcast System. For the next 60 seconds, this station will conduct a test of the Emergency Broadcast System. This is only a test.");
};
}