Pytanie : Dziecko okno od Taskbar

My mieć set dll funkcja, gdy my używać forma od the funkcja my używać

Application.CreateForm (TfmForm, fmForm);

if my potrzebować dziecko forma od ustawiać my ustawiać the borderstyle bsDialog i tworzyć the dziecko forma using

fmChildForm: =TfmChildForm.Create (fmForm);

This być wszystkie grzywna ale the fmChildForm pojawiać się w the TaskBar

We móc bsToolWindow ale the tworzyć styl być prawdziwy good.

Any propozycja na dlaczego the fmChildForm od the TaskBar

Odpowiedź : Dziecko okno od Taskbar

procedura TfmForm.FormCreate (Nadawca: TObject);
 zaczynać
 ShowWindow (fmChildForm.Handle, SW_HIDE);
 SetWindowLong (fmChildForm.Handle, GWL_EXSTYLE, getWindowLong (fmChildForm.Handle, GWL_EXSTYLE) lub WS_EX_TOOLWINDOW);
 ShowWindow (fmChildForm.Handle, SW_SHOW);
 końcówka;
 
Inne rozwiązania  
 
programming4us programming4us