读注册表试一试 | Dim WshShell | | Dim LangId | | set WshShell = CreateObject("wscript.Shell") | | LangId=WshShell.RegRead("HKEY_CURRENT_USER\Control Panel\International\Locale") | | Select Case LangId | | Case "00000804" | | MsgBox "Chinese (PRC)" | | Case "00000409" | | MsgBox "English" | | Case "00000411" | | MsgBox "Japanese" | | End Select | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | COPY |
|