RT!
到底是用哪个Dll?怎么调用?能给简单介绍一下吗?
调用简单的API我会一点儿!
访问注册表我真是不会了!

解决方案 »

  1.   

    http://www.pconline.com.cn/pcedu/empolder/net/0411/500482.html
      

  2.   

    借花献佛http://www.it023.com/software/develop/donet/2004-04-05/1081153561d11731.htmlhttp://webuc.net/chinahuman/archive/2004/06/02/904.aspx
      

  3.   

    参考一下VB.NET的,差不多呢!
    http://www.microsoft.com/china/msdn/archives/library/dv_vstechart/html/vbtchAccessingRegistryWithVisualBasicNET.asp
      

  4.   

    System.Win32.Registry和System.Win32.RegistryKey《C#高级编程》第14章有详细讲解,要是手头上没有这本书可以到这里下PDF的。61.145.118.137
    csdn
    csdn
      

  5.   

    Microsoft.Win32.RegistryKey
    不能完成你的要求吗?怎么一定要用API呢
      

  6.   

    using Microsoft.Win32
    //1,赋值
    RegistryKey regKey = Registry.CurrentUser.CreateSubKey(c_RegistryKey);
    regKey.SetValue("Language", cultureName);
    regKey.Close();//2,取值
    RegistryKey regKey = Registry.CurrentUser.OpenSubKey(c_RegistryKey);
    if (regKey == null) 
    return; // get some app infomation
    if (regKey.GetValue("ProjectID") != null)
      

  7.   

    to:hbxtlhx(下着春雨的天)是能完成我要的,可是经理要求我调用API,实现!谢谢!
    2002pine(在深圳真的很累)谢谢!可惜不是调用API实现的!
      

  8.   

    我拷,他是不知道.net自带的类库能实现此功能.只样的效率要高于用api
      

  9.   

    他当然知道了
    他是想让我做调用api的练习
      

  10.   

    那建议你用 vc6 或 vb6 :o