谁来教教我,我看了半天书,没有找到相关内容!(50分)

  • 主题发起人 主题发起人 yhl1118
  • 开始时间 开始时间
Y

yhl1118

Unregistered / Unconfirmed
GUEST, unregistred user!
我想在安装程序安装时,选择是安装中文或英文的程序,
请问我要在installshield中如何写这个判断过程!
 
搞一个语言选择的对话框,通过这个返回值就可以知道啦!
 
function GetSysInfo()
int nvType, nvSize, nResult;
string svResult;
int nvResult;
begin
nResult = GetSystemInfo(LANGUAGE, nvResult, svResult);
if (nResult < 0) then
MessageBox("Get information failed", INFORMATION);
else
if (nvResult == ISLANG_CHINESE_TRADITIONAL) then
MessageBox("Chinese Traditional system.", INFORMATION);
else
if (nvResult == ISLANG_CHINESE_SIMPLIFIED) then
MessageBox("Chinese SIMPLIFIED system.", INFORMATION);
else
if (nvResult == ISLANG_JAPANESE) then
MessageBox("JAPANESE system.", INFORMATION);
else
if (nvResult == ISLANG_ENGLISH) then
MessageBox("ENGLISH system.", INFORMATION);
endif;
endif ;
endif
 
多人接受答案了。
 
后退
顶部