READMEMACRO.mp4
Macro Minstrel is a simple Windows application that allows users to create and use keyboard macros.
- Define up to four different macros.
- Assign macros to specific keys on the keyboard.
- Start and stop the macro execution.
- Windows operating system.
- Microsoft .NET Framework.
- Clone or download the repository to your local machine.
- Open the solution file (
Macro_Minstrel.sln
) in Visual Studio. - Build the solution to generate the executable.
- Launch the application (
Macro_Minstrel.exe
). - Enter the desired macros in the text boxes provided.
- Press the Start button to activate the macro functionality.
- Press the specified keys on the keyboard to trigger the corresponding macros.
- Press the Stop button to deactivate the macro functionality.
- The application listens for specific key presses using the
GetAsyncKeyState
function from theUser32.dll
. - When a designated key is pressed, the corresponding macro is executed by sending keystrokes using
SendKeys.Send
. - Macros are user-defined strings entered into text boxes within the application.
- This application was created as a simple demonstration of keyboard macro functionality in C#.