private void buttonRecord_Click(object sender, EventArgs e)
        {
            Shell32.Shell shell = new Shell32.Shell();
            shell.MinimizeAll();

            macro.Events.Clear();
            lastTimeRecorded = Environment.TickCount;

            keyboardHook.Start();
            mouseHook.Start();
        }
 void ShowDesktop()
 {
     Shell32.Shell winShell = new Shell32.Shell();
     winShell.MinimizeAll();
 }
        void ShowDesktop() {
            Shell32.Shell winShell = new Shell32.Shell();
            winShell.MinimizeAll();

        }