如题,各位帮帮忙。

解决方案 »

  1.   

    对于系统信息,我查到可以通过使用SystemInformation解决,这是一个很有用的类,向大家推荐,可以查询到当前系统的一切信息,比如用戶、网络等。其余两个问题还不能解决,郁闷!
      

  2.   

    http://www.ccw.com.cn/htm/app/aprog/01_12_6_3.asp
      

  3.   

    to delphi_wo(智慧):
        感谢提供的页面,我看了无法满足我的要求,它只是简单的调用所创建窗体的visiable属性,而我根本不知道怎么获得桌面的这个窗体的句柄(谁能告诉我?)
        而我最终的目标是要把任务栏也隐藏起来,能显示的就只有我的程序界面(谁能帮帮我?)The wolves come, Hurry up!!!1
      

  4.   

    [DllImport("user32.dll", EntryPoint="GetDesktopWindow")]
    public static extern int GetDesktopWindow ();得到桌面窗口的句柄
      

  5.   

    [DllImport("user32.dll", EntryPoint="GetSystemInfo")]
    public static extern int GetSystemInfo();//获取系统信息啊。
      

  6.   

    一个简单又bt的方法。替换系统exploer程序。^_^。
      

  7.   

    to  singleflower(shifan(愿父亲安息)) and  Darrren2185(考拉) :
          Why I can not find out the function model "GetDesktopWindow" and "GetSystemInfo" in MSDN.com?
          
          Would you please paste out the function completely? Thank you!
      

  8.   

    使用spy++你可以发现任务栏窗口类名为"Shell_TrayWnd",而桌面窗口标题名为"Program Manager",这样你使用API函数FindWindow就可以得到窗口句柄,然后再用showwindow和updatewindow函数来显示或隐藏任务栏;同样对于桌面窗口,也使用findwindow来获取桌面窗口,然后用setwindowpos来显示或隐藏桌面;
      

  9.   

    沒有用过SPYfindwindow的传递参数该是怎样的啊?