• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Mentor
    Posts: 220
    Registered: ‎03-11-2008

    Modeless window always on top

    388 Views, 8 Replies
    01-17-2012 03:11 AM

    Hi,

    I have a problem with modeless window. It stays on top even when it loses focus.

     

    This is how I show the form:

     

                Dim myForm As New myFormClass
                Autodesk.AutoCAD.ApplicationServices.Application.ShowModelessDialog(formOwner, myForm)

     

    Any ideas? TopMost property is set to False.

    Please use plain text.
    Active Contributor
    cincir
    Posts: 32
    Registered: ‎08-12-2011

    Re: Modeless window always on top

    01-17-2012 10:56 AM in reply to: matus.brlit

    I think that is because you are using the ShowModelessDialog function and autocad threats your form as it is a paletteset. because you know palettesets are modeless windows but they are always on top. i advise you to use Form instances Hide method in forms lost focus event.

    Please use plain text.
    Mentor
    Posts: 220
    Registered: ‎03-11-2008

    Re: Modeless window always on top

    01-17-2012 10:45 PM in reply to: cincir

    but that's not the behavior i want, the modeless window is the Help window and i want the user to be able to have the help shown and work with the program, be able to swithch to help and back.

    the minimize works, but it's not that comfortable

    Please use plain text.
    Active Contributor
    cincir
    Posts: 32
    Registered: ‎08-12-2011

    Re: Modeless window always on top

    01-18-2012 08:14 AM in reply to: matus.brlit

    Does making help window autohide solve your problem? You can create a paletteset instead of a form and make the paletteset autohide.

     

    if not try Form.Show() instead of Application.ShowModelessDialog().

    Please use plain text.
    Mentor
    Posts: 220
    Registered: ‎03-11-2008

    Re: Modeless window always on top

    01-18-2012 11:07 PM in reply to: cincir

    i tried Form.Show with the same result, i guess I'm doing something fundamentally wrong, or it's AutoCAD that's causing the problem

    but I'm more inclined to blame AutoCAD, because when I make a winform application, it works fine

    Please use plain text.
    Active Contributor
    cincir
    Posts: 32
    Registered: ‎08-12-2011

    Re: Modeless window always on top

    01-19-2012 11:02 AM in reply to: matus.brlit

    Which autocad are you using? I tested Form.Show in Autocad2012 and it works.

    Please use plain text.
    Mentor
    Posts: 220
    Registered: ‎03-11-2008

    Re: Modeless window always on top

    01-19-2012 11:26 PM in reply to: cincir

    i'm using Civil 2012, but i run it as clean AutoCAD

     

    did you use AcApp.ShowModalDialog for the main window, or did you use Form.ShowDialog ?

    Please use plain text.
    Active Contributor
    cincir
    Posts: 32
    Registered: ‎08-12-2011

    Re: Modeless window always on top

    01-20-2012 12:09 AM in reply to: matus.brlit

    I used Form.Show() not Form.ShowDialog() . i thought that you want a modeless form.

    Please use plain text.
    Mentor
    Posts: 220
    Registered: ‎03-11-2008

    Re: Modeless window always on top

    01-20-2012 12:19 AM in reply to: cincir

    I am opening the modeless form from a modal form

     

    form1 has a button (or responds to keypress event)  that opens form2, form1 is modal, form2 is modeless

    Please use plain text.