问题3,在installshield中有选项可指定是否需要自注册。你用的installshield是什么版本

解决方案 »

  1.   

    我使用的installshield是6.0版本.在该版本中如何完成注册?
    另外,目前是否有支持中文的installshield6.0问题1我自己解决.
      

  2.   

    LANGID,代码页跟字符集有着某种对应关系...取系统使用的系统LNAGID
    The GetSystemDefaultLangID function retrieves the language identifier of the system locale. LANGID GetSystemDefaultLangID(void);取用户默认的LANDID,在多语言环境下,所取得的LANGID跟系统LANGID可能不同...
    The GetUserDefaultLangID function retrieves the language identifier of the current user locale. LANGID GetUserDefaultLangID(void);取系统默认的LCID
    The GetSystemDefaultLCID function retrieves the system default locale identifier. LCID GetSystemDefaultLCID(void);取用户默认的LCID
    The GetUserDefaultLCID function retrieves the user default–locale identifier. LCID GetUserDefaultLCID(void);取本地信息
    int GetLocaleInfo(
      LCID Locale,      // locale identifier
      LCTYPE LCType,    // information type
      LPTSTR lpLCData,  // information buffer
      int cchData       // size of buffer
    );
    LCType的取值可以是以下的,只摘取了一部分...LOCALE_IDEFAULTANSICODEPAGE 
    American National Standards Institute (ANSI) code page associated with this locale. If the locale does not use an ANSI code page, the value is 0. The maximum number of characters allowed for this string is six. 
    LOCALE_IDEFAULTCODEPAGE 
    Original equipment manufacturer (OEM) code page associated with the country/region. If the locale does not use an OEM code page, the value is 1.The maximum number of characters allowed for this string is six. 
    LOCALE_IDEFAULTCOUNTRY 
    Code for the principal country/region in this locale. This is provided so that partially specified locales can be completed with default values. The maximum number of characters allowed for this string is six. 
    LOCALE_IDEFAULTEBCDICCODEPAGE 
    Windows 2000: Default EBCDIC code page associated with the locale. The maximum number of characters allowed for this string is six. 
    LOCALE_IDEFAULTLANGUAGE 
    Language identifier for the principal language spoken in this locale. This is provided so partially specified locales can be completed with default values. The maximum number of characters allowed for this string is five. 
    LOCALE_IDEFAULTMACCODEPAGE 
    Default Macintosh code page associated with the locale. If the locale does not use a Macintosh code page, the value is 2. The maximum number of characters allowed for this string is six.