shell32.dll csharp example

Code Example - shell32.dll csharp example

                
                        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();
        }