模式窗体我是这样创建的        Application.CreateForm(Tform_ftpsetup, form_ftpsetup);
        with form_ftpsetup do
        try
          ShowModal;
          finally
        free;
        end;
非模式我是这样写的        Application.CreateForm(Tform_ftpsetup, form_ftpsetup);
        with form_ftpsetup do
        try
          Show;
          finally
        free;
        end;为什么非模式显示不出窗体啊,向高手求救。