C CathyEagle Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-15 #2 如果没有在工程文件里面将Applicaiton.ShowMainForm设为False的话, 只有程序的主窗口才能显示在任务栏上。
B brightangel Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-15 #3 如果把Application.ShowMainForm设为False又能怎样呢?
C CathyEagle Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-16 #5 看这里,还有上面的例子程序就知道了。 http://eagleboost.myrice.com/issues/Materials/Articles/DelphiWindow.htm
Z Zephyr Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-19 #6 重载Form的CreateParams: procedure TMyForm.CreateParams(var Params: TCreateParams); begin inherited; Params.WndParent := GetDesktopWindow; end;
重载Form的CreateParams: procedure TMyForm.CreateParams(var Params: TCreateParams); begin inherited; Params.WndParent := GetDesktopWindow; end;