VBS TUTORIAL: function-getlocale function _vbs

Source: Internet
Author: User
Tags locale

GetLocale function

Returns the current locale ID value.

GetLocale()

Description

locale is a collection of user reference information, which is related to the user's language, country and cultural tradition. locale Determines the keyboard layout, alphabetical sort order, and date, time, number, and currency format.

The return value can be any 32-bit value, as shown in the locale ID:

The following example illustrates the use of the getlocale function. To use this code, copy all the content between the <BODY&GTL flags in the standard HTML file.

Enter Date in UK format: <input type= "text" id= "ukdate" size= "" ><p>here "S" US equivalent: <input type= "Text" id= "usdate" size= "><p><input type=" button "value=" Convert "id=" Button1 "><p>enter A Price in German: <input type= "text" id= "Germannumber" size= "" ><p>here ' the UK equivalent: <input type= "Text" id= "Usnumber" size= "><p><input type=" button "value=" Convert "id=" Button2 "><p>< Script language= "VBScript" >dim Currentlocale ' get the current Localecurrentlocale =  GetLocale  Sub button1_onclick Dim Original original = SetLocale ("EN-GB") MyDate = CDate ( Ukdate.value) ' IE always sets the locale to us 中文版 so with the ' Currentlocale variable to set the locale to US Englis H original = SetLocale (currentlocale) Usdate.value = FormatDateTime (mydate,vbshortdate) End SubSub Button2_onclick Dim Original original = SetLocale ("de") myvalue = CCur (germannumber.value) original = SetLocale ("EN-GB") Usnumber.value = Form Atcurrency (myvalue) End sub</script> 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.