Thema: Delphi Fensterreihenfolge

Einzelnen Beitrag anzeigen

Vjay

Registriert seit: 2. Dez 2003
Ort: Berlin/Eschede
481 Beiträge
 
Delphi 7 Professional
 
#10

Re: Fensterreihenfolge

  Alt 7. Jun 2006, 17:03
Schau dir mal die WM_WINDOWPOSCHANGING an, dort kannst du in aller Ruhe die Z-Position des Fensters manipulieren.

Delphi-Quellcode:
typedef struct _WINDOWPOS { // wp 
    HWND hwnd;                   
    HWND hwndInsertAfter;         
    int  x;                       
    int  y;                       
    int  cx;                     
    int  cy;                     
    UINT flags;                   
}
 WINDOWPOS;
Zitat:
hwndInsertAfter

Specifies the position of the window in Z order (front-to-back position). This member can be the handle of the window behind which this window is placed, or can be one of the special values listed with the SetWindowPos function.
Wer später bremst ist eher tot.
  Mit Zitat antworten Zitat