ShowDialog alternative for nonmodal contact?

N

Nebo

I am using the following code to display the contact dialog. is there
some way to make this non modal? I realize by design this is normal,
however I am trying to launch it from another application and dont
want it interupted.

Contact c1 = new Contact(new ItemId(-2147483462));
c1.ShowDialog();

Thanks in advance for your suggestions.
 
C

Cub71

What about this:

Contact c1 = new Contact(new ItemId(-2147483462));
c1.Show();

If that doesn't show, you could call

Application.DoEvents();
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top