我的程序包含中英文字符串资源.想在中文下用英文的.
知道有一个函数,忘记名了.

解决方案 »

  1.   

    LoadStr()是获得与系统语言对应的资源。
    在中文系统下,LoadStr()获得的是中文,我想得到英文的。
      

  2.   

    int LoadString(    HINSTANCE hInstance, // handle of module containing string resource 
        UINT uID, // resource identifier 
        LPTSTR lpBuffer, // address of buffer for resource 
        int nBufferMax  // size of buffer 
       );
      

  3.   

    你uID對應的是中文就中文 英文就英文呀
      

  4.   

    我用LoadStr(),LoadStr(int Ident); 的Ident的中文和英文下都一样。