I want to send keypresses from c# app to an active app (in my case Frets on Fire). The problem is that my code is working with most apps I tried, but not with the actual app I'm aiming for. Here's my code:
while (true)
{
SendKeys.SendWait("{F1}");
Thread.Sleep(500);
}
What might prevent the specific app from taking the c# keysends, and what workaround options do I have? Thanx!