delphi 多语言问题 ( 积分: 0 )

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

yurongguang

Unregistered / Unconfirmed
GUEST, unregistred user!
我使用了reinit单元。
ENGLISH = (SUBLANG_ENGLISH_US shl 10) or LANG_ENGLISH;
CHINESE = (SUBLANG_CHINESE_SIMPLIFIED shl 10) or LANG_CHINESE;
procedure TForm1.Button3Click(Sender: TObject);
begin
if Trim(ComboBox1.Text)='english' then
if LoadNewResourceModule(ENGLISH) <> 0 then
ReinitializeForms;
if trim(ComboBox1.Text)='china' then
if LoadNewResourceModule(CHINESE) <> 0 then
ReinitializeForms;
但是,现在界面资源没有变化。不知那里出错了,请大侠们指点一下,
 
请注意,可能是你的语言配置选择错误,SUBLANG_ENGLISH_US:应该选择英语美国。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
761
import
I
I
回复
0
查看
855
import
I
后退
顶部