Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>On Delphi you can use<code>SendToBack</code> method, <code>.Top</code> and <code>.Left</code> properties.</p> <pre><code>form1.Top := ...; form1.Left := ...; form1.SendToBack; </code></pre> <blockquote> <p>procedure SendToBack;</p> <p>Description</p> <p>Use SendToBack to change the order of overlapping controls or forms.</p> <p>The order in which controls stack on top of each other (also called the Z order) depends on the order the controls are placed on the form. For example, if you put a label and an image on a form so that one is on top of the other, the one that was placed first on the form becomes the one on the bottom. Because both the label and the image are non-windowed controls, they "stack" as you would expect them to. Call the SendToBack method for the top object to move it below the other object.</p> <p>The stacking order of two windowed controls is the same as the stacking of two non-windowed controls. For example, if you put a memo on a form, then put a check box on top of it, the check box remains on top. Calling SendToBack for the check box makes the memo appear on top.</p> <p>The stacking order of windowed and non-windowed controls cannot be mingled. For example, if you put a memo, a windowed control, on a form, and then put a label, a non-windowed control, on top of it, the label disappears behind the memo. Windowed controls always stack on top of non-windowed controls. In this example, calling the SendToBack method of the memo does nothing, the label remains behind the memo.</p> <p>If the control has the input focus when the SendToBack method executes, it loses the input focus.</p> </blockquote> <p>(Edit: <a href="http://www.ntwind.com/software/winsnap.html" rel="nofollow noreferrer">WinSnap</a> is a very good utility for taking and editing screenshots)</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload