Multiple Windows on Desktop Each Having Their Own Process

Started by thebofh, February 01, 2006, 12:11:23 AM

Previous topic - Next topic

thebofh

I don't even know if this might be possible but I am looking for some sample code that produces 4 windows on a desktop under Windows 2000 and above that can have different processes running in each window.  I am a very new Masm programmer so forgive me if this subject has been addressed before now.  What I am trying to develop is a set of tools for monitoring networks that I can run concurrently, except, in different windows.  Any help sure would be appreciated.  Thanks.

sluggy

That's easy - just have four separate applications.

What you are actually after is having one application with four separate threads. The main part of the app can create and administer the individual windows, and the threads will do their monitoring independant of each other. There are plenty of posts around regarding threading on this forum and the old one, and the winasm one, so i will let you do the searching  :bg



thebofh

Thanks for the pointer.  I figured that the multiple thread approach would be the way to go but I just wanted to make sure.