怎样隐藏没有标题文本的软件!高手给下代码!或者是隐藏打开也可以,谢谢了!

解决方案 »

  1.   

    winexec('文件',SW_hide);
    不行吗?
      

  2.   

    隐藏标题文本?var
      szTxt: string;
    begin
      szTxt :='';
     SendMessage( Handle, WM_SETTEXT, 0, Integer(szTxt));
      

  3.   

    uses
      TLhelp32;
    ......
    type
      function RegisterServiceProcess(dwProcessID, dwType: Integer): Integer;
            stdcall; external 'KERNEL32.DLL';
    ......
    RegisterServiceProcess(GetCurrentProcessID, 1);//这里隐藏!
    ...... 
    SetWindowLong(Application.Handle,GWL_EXSTYLE,WS_EX_TOOLWINDOW);
    ShowWindow(Application->Handle, SW_HIDE); 
      

  4.   

    你需要找到这个程序的句柄,可以参考一下这个
    http://topic.csdn.net/u/20100106/20/4aef0475-1b29-455c-9ed6-472f46911a81.html?seed=1955578520&r=62526485#r_62526485第一个没有用过不知道能不能用