ShowDialog alternative for nonmodal contact?

  • Thread starter Thread starter Nebo
  • Start date Start date
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.
 
What about this:

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

If that doesn't show, you could call

Application.DoEvents();
 
Back
Top