How can I mimic a container to run multiple copies of my C# applic

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have created an application that displays various information about Active
Directory objects. Is there a control or a way to mimic the "Windows"
command on the Active Directory's Users and Computers MMC Snap-in, where user
can select to create a new window inside of the snap-in. This way, the user
sees multiple copies of the Active Directory's Users and Computers windows.
 
Pucca,

Why not create your application as an MMC snap in, and then that
functionality will easily be available to you.

Hope this helps.
 
I don't think there is a way to create MMC snap-in (v1.2) using C#. You see,
our application have to run on Win2000 server and up and MMC 2.0 is not
upgradeable for Win2000.

I developed the ext. Property pages in C++ as a snap-in and that is plentry
for me already.
--
Thanks.


Nicholas Paldino said:
Pucca,

Why not create your application as an MMC snap in, and then that
functionality will easily be available to you.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Pucca said:
Hi,
I have created an application that displays various information about
Active
Directory objects. Is there a control or a way to mimic the "Windows"
command on the Active Directory's Users and Computers MMC Snap-in, where
user
can select to create a new window inside of the snap-in. This way, the
user
sees multiple copies of the Active Directory's Users and Computers
windows.
 
Back
Top