32770 The class for a dialog box.
I connect to the my pc with chrome remote desktop.
img : https://social.msdn.microsoft.com/Forums/getfile/1410849
How can I hide it?
Process[] Memory = Process.GetProcesses();
foreach (Process prc in Memory)
{
if (prc.ProcessName == "remoting_desktop.exe" || prc.ProcessName == "remoting_desktop")
{
ShowWindow(prc.MainWindowHandle, 0);
}
}
is not working.