hi all,
i have a independant process running on machine which was made by some one else, it natively live in my system tray although has a windows form interface.
what i want to be able to maximize the process/application to full screen from wihtin inside my program.
my problem i dont how you would do this. not that i cant just do:
process k = new process()
because i want to be able to use the currently running instance, if i were to make a new instance the program would jsut say its already runnng.
thanks
Jan MontanoPosted Jun 17, 2008, 1:11 AM
to check if a process is running, read this article by Scott Lysle: Finding and Listing Processes in C#
Good luck