Hi all,
Well, this time I am pretending to get the size and the position of a windows process. In fact the size is not relevant to me cause it has always the same, but the position not. Showing the code
Code Snippetprivate Process FindWindow(){ÃÂ ÃÂ ÃÂ Process[] procesos = Process.GetProcesses();ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ for (int i = 0; i < procesos.Length; i++)ÃÂ ÃÂ ÃÂ {ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ if (procesos[i].ToString().Contains("WindowTitle"))ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ {ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ return procesos[i];ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ }ÃÂ ÃÂ ÃÂ }ÃÂ ÃÂ ÃÂ return null;}I callProcess WindowA = FinWindow ();At this point i need to know how to get the windows position of that processThank,
View Complete Post