Hello:
How I can minimize all the applications using C#.
Thanks for anyhelp.
How I can minimize all the applications using C#.
Thanks for anyhelp.
foreach (Process p in Process.GetProcesses())
{
if (p.MainWindowHandle != null)
{
Message.Create(p.MainWindowHandle, AMessageID, TheWParam, TheLParam);
}
}
Comment