Autodesk.AutoCAD.ApplicationServices Namespace > Application Class > Application Methods > ShowModelessDialog Method > ShowModelessDialog(Form) Method
Application.ShowModelessDialog(Form) Method
Description

Shows a modeless dialog. This method should be used instead ofForm.Show, which may lead to unexpected behavior. 

This method calls the ShowModelessDialog(System.Windows.Forms.IWin32Window owner, System.Windows.Forms.Form formToShow) method with owner set to Nothing or null.

Visual Basic
Public static Function ShowModelessDialog(
    formToShow As Form
) As void
C#
public static void ShowModelessDialog(
    Form formToShow
);
Parameters
Parameters 
Description 
Form formToShow 
Input object to show. 
Links
   Comments?