首页 > 开发 > 综合 > 正文

如何获取操作系统的语言类型

2024-07-21 02:23:24
字体:
来源:转载
供稿:网友
  • 网站运营seo文章大全
  • 提供全面的站长运营经验及seo技术!
  • 今天网友问到了这个问题:
    "比如:我在win2000中文版上运行时可以获取操作系统的语言版本为中文,在win2000英文版上运行时,知道是英文版"

    这里我写了个函数,方便使用.(只取得简体,繁体,和英文,其它的自己加吧 ^_^)代码如下:

    http://community.csdn.net/expert/topic/3389/3389759.xml?temp=.2974665

    private declare function getsystemdefaultlcid lib "kernel32" () as long

    private sub command1_click()
    msgbox getostype, vbokonly, "提示"
    end sub

    function getostype() as string
    dim ret as string
    select case hex(getsystemdefaultlcid)
    case 804:
    ret = "中文简体(大陆)"
    case 404:
    ret = "中文繁体(台湾)"
    case 409:
    ret = "英文"
    case else:
    ret = "其它语言系统"
    end select
    getostype = ret
    end function




    发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表