|
TSubForm의 메소드 중에 CreateParams를 수정하면 되더군요.
header----
...
protected:
void __fastcall CreateParams(TCreateParams &Params);
source----
...
void __fastcall TSubForm::CreateParams(TCreateParams &Params)
{
TForm::CreateParams(Params);
Params.ExStyle=WS_EX_APPWINDOW;
Params.WndParent=GetDesktopWindow();
}
-> 이따구로 만들면 됩니다.
|