Thema: In der IDE

Einzelnen Beitrag anzeigen

Benutzerbild von implementation
implementation

Registriert seit: 5. Mai 2008
940 Beiträge
 
FreePascal / Lazarus
 
#6

AW: In der IDE

  Alt 17. Feb 2011, 18:55
Nein, so geht's nicht. Aber so:

Delphi-Quellcode:
if csDesigning in ComponentState then
  WS := S_CHILD or LBS_SORT or WS_VISIBLE or WS_OVERLAPPEDWINDOW
      or WS_VSCROLL or WS_HSCROLL or WS_BORDER
else
  WS := S_CHILD or LBS_SORT;

SetWindowLong( ... WS ... );
  Mit Zitat antworten Zitat