在我建立的DLL中加入Form,在其它Exe中調用此DLL並顯示其中的Form時,總會在Win的任務欄出現,能否作到不出現在任務欄呢,並當這個Form最小化的時出現在"開始"按鈕的上面.哪位大哥能幫忙嗎?

解决方案 »

  1.   

    请问怎么在DLL中连接数据库呀
      

  2.   

    你要将Application对象传入dll才行
    如何处理请看
    http://expert.csdn.net/Expert/topic/1991/1991138.xml?temp=.173382
      

  3.   

    我已能在其它程序中顯示出DLL中的表單,我是想從任務欄里去掉.
      

  4.   

    把DLL中的Form的FormStyle设成fsStayOnTop试试。
      

  5.   

    应该是将application的handel传入你的dll的form就行了
    old:Pointer
    old:=Application.handel
    Application.handel:=传入的handel
    form:=Tform.create(application)
    result:=Form.handel
    application.handel:=Old
    这样比较好