P pnljh Unregistered / Unconfirmed GUEST, unregistred user! 2002-06-24 #1 菜单project下的Add language怎么没了? 另,一个多语言和项目做好后,怎么运行? 我运行原来的项目,语言不变,运行生成后的项目,提示要参数之类的东西。 到底怎么运行?
S Sindbad Unregistered / Unconfirmed GUEST, unregistred user! 2002-06-24 #2 1、在项目管理器中设置.exe为Active; 2、声明常量 const ENGLISH_US = (SUBLANG_ENGLISH_US shl 10) or LANG_ENGLISH; CHINESE = (SUBLANG_CHINESE_SIMPLIFIED shl 10) or LANG_CHINESE; CHINESE_HK = (SUBLANG_CHINESE_HONGKONG shl 10) or LANG_CHINESE; 3、程序初始化时: 调用:SysLocale.DefaultLCID取得当前操作系统安装语言; SwitchLanguage(当前操作系统语言,比如说CHINESE) 4、程序中调用SwitchLanguage再切换相应的语言;
1、在项目管理器中设置.exe为Active; 2、声明常量 const ENGLISH_US = (SUBLANG_ENGLISH_US shl 10) or LANG_ENGLISH; CHINESE = (SUBLANG_CHINESE_SIMPLIFIED shl 10) or LANG_CHINESE; CHINESE_HK = (SUBLANG_CHINESE_HONGKONG shl 10) or LANG_CHINESE; 3、程序初始化时: 调用:SysLocale.DefaultLCID取得当前操作系统安装语言; SwitchLanguage(当前操作系统语言,比如说CHINESE) 4、程序中调用SwitchLanguage再切换相应的语言;