handle to process
-
I did a brief search of CP articles and didn't see anything... Is it possible to get the handle to a differet process/program running? I want to try to make a program that changes programs' opacity, and I thought I'd start by trying to use the two lines: Form f = Form.FromHandle([some app's handle]); f.Opacity = 0.5; I know it looks too easy to work right, and I know it sounds weird, but I want to try it anyway.
-Daniel Typing too fast fro my owngood
-
I did a brief search of CP articles and didn't see anything... Is it possible to get the handle to a differet process/program running? I want to try to make a program that changes programs' opacity, and I thought I'd start by trying to use the two lines: Form f = Form.FromHandle([some app's handle]); f.Opacity = 0.5; I know it looks too easy to work right, and I know it sounds weird, but I want to try it anyway.
-Daniel Typing too fast fro my owngood
In your help files look up "Process". You can get a list of running processes that way. And if you already know the name of the process you can also get a list of only those processes with the specified name. From there you can get the process handle and so on. Phil
-
In your help files look up "Process". You can get a list of running processes that way. And if you already know the name of the process you can also get a list of only those processes with the specified name. From there you can get the process handle and so on. Phil