ShowDialog alternative for nonmodal contact? - DOTNET

This is a discussion on ShowDialog alternative for nonmodal contact? - DOTNET ; 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 ...

+ Reply to Thread
Results 1 to 2 of 2

ShowDialog alternative for nonmodal contact?

  1. Default ShowDialog alternative for nonmodal contact?

    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.

  2. Default Re: ShowDialog alternative for nonmodal contact?

    What about this:

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

    If that doesn't show, you could call

    Application.DoEvents();

+ Reply to Thread