Home Common Problem How to deal with Chinese garbled characters in VBA editor

How to deal with Chinese garbled characters in VBA editor

Aug 19, 2020 pm 01:41 PM
vba Chinese garbled

Solution to Chinese garbled characters in the VBA editor: 1. Click [Tools → Options → Editor Format] to open the window and correct the font options to Chinese fonts; 2. Use the Traditional and Simplified conversion in Excel review , convert the code back to Simplified Chinese.

How to deal with Chinese garbled characters in VBA editor

Solution to Chinese garbled characters in the VBA editor:

1. Tools → Options → Editor Format Window , correct the font option to Chinese font;

2. Follow the steps below to change the language of non-Unicode programs:

Control Panel=>Clock, Language and Region=>Region= >Manage=>Language for non-Unicode programs=>Change the system locale to Chinese (Simplified, China)=>Restart the computer.

3. If the code is messed up. Especially for traditional Chinese, you can use the traditional-simplified conversion in Excel review to convert the code back to simplified

4. If the Chinese code is clearly copied, copy it to another module, especially to the remote desktop On the computer, the Chinese code will become garbled

This is proven to be feasible based on my continuous experience: before copying and pasting the VBA code, set the input method to Chinese state, and then copy and paste it. It will be normal.

The above is the detailed content of How to deal with Chinese garbled characters in VBA editor. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Why macros still cannot be enabled after wps installs vba Why macros still cannot be enabled after wps installs vba Mar 21, 2024 am 08:30 AM

wpsOffice is an office software suite independently developed by Kingsoft Software Co., Ltd., which can realize multiple functions such as text, forms, presentations, and PDF reading. It has the advantages of low memory usage, fast running speed, multiple cloud functions, powerful plug-in platform support, free massive online storage space and document templates. What the editor will introduce to you today is the "macro" function. In the past few days, friends have always asked me why I still can't enable macros after installing VBA. The "macro" function is still gray and cannot be opened, as shown below. What's going on? The editor will find out the reasons for you. There are three main reasons for this situation: 1. Does your wps support vba? Some versions do not support it. 2. Confirm that you have enabled macros and whether the operation

Methods to solve the problem of Chinese garbled characters in PHP Dompdf Methods to solve the problem of Chinese garbled characters in PHP Dompdf Mar 05, 2024 pm 03:45 PM

Methods to solve the Chinese garbled problem of PHPDompdf PHPDompdf is a tool for converting HTML documents to PDF files. It is powerful and easy to use. However, when processing Chinese content, you sometimes encounter the problem of garbled Chinese characters. This article will introduce some methods to solve the Chinese garbled problem of PHPDompdf and provide specific code examples. 1. When using font files to process Chinese content, a common problem is that Dompdf does not support Chinese content by default.

Can Python+Pandas replace Excel+VBA in daily work? Can Python+Pandas replace Excel+VBA in daily work? May 04, 2023 am 11:37 AM

There is a popular question on Zhihu: Can Python+Pandas replace Excel+VBA in daily work? My suggestion is that the two are complementary, and no one can replace the other. Python+Pandas is used for complex data analysis and mining, and Excel+VBA is used for daily simple data processing. From the perspective of data processing and analysis capabilities, Python+Pandas can definitely replace Excel+VBA, and is far more powerful than the latter. However, from the perspective of convenience, dissemination, and market recognition, Excel+VBA is still irreplaceable in the workplace. Because Excel conforms to the usage habits of most people, the cost of use is lower. Just like Photoshop can produce more professional photos, for

Common causes and solutions for Chinese garbled characters in MySQL installation Common causes and solutions for Chinese garbled characters in MySQL installation Mar 02, 2024 am 09:00 AM

Common reasons and solutions for Chinese garbled characters in MySQL installation MySQL is a commonly used relational database management system, but you may encounter the problem of Chinese garbled characters during use, which brings trouble to developers and system administrators. The problem of Chinese garbled characters is mainly caused by incorrect character set settings, inconsistent character sets between the database server and the client, etc. This article will introduce in detail the common causes and solutions of Chinese garbled characters in MySQL installation to help everyone better solve this problem. 1. Common reasons: character set setting

The ultimate solution to the problem of Chinese garbled characters in PyCharm The ultimate solution to the problem of Chinese garbled characters in PyCharm Jan 27, 2024 am 08:00 AM

The ultimate method to solve the problem of Chinese garbled characters in PyCharm requires specific code examples. Introduction: PyCharm, as a commonly used Python integrated development environment (IDE), has powerful functions and a friendly user interface, and is loved and used by the majority of developers. However, when PyCharm processes Chinese characters, it may sometimes encounter garbled characters, which causes certain problems in development and debugging. This article will introduce how to solve the Chinese garbled problem in PyCharm and give specific code examples. 1. Set up the project

What to do if ajax transmits Chinese garbled characters What to do if ajax transmits Chinese garbled characters Nov 15, 2023 am 10:42 AM

Solutions for ajax to transmit Chinese garbled characters: 1. Set a unified encoding method; 2. Server-side encoding; 3. Client-side decoding; 4. Set HTTP response headers; 5. Use JSON format. Detailed introduction: 1. Set a unified encoding method to ensure that the server and client use the same encoding method. Under normal circumstances, UTF-8 is a commonly used encoding method because it can support multiple languages ​​​​and character sets; 2 , Server-side encoding. On the server side, ensure that the Chinese data is encoded in the correct encoding method and then passed to the client, etc.

What should I do if the PHP web page has Chinese garbled characters? A complete solution What should I do if the PHP web page has Chinese garbled characters? A complete solution Mar 26, 2024 pm 03:27 PM

The problem of Chinese garbled characters in PHP web pages is that Chinese characters are displayed as garbled characters in the web page display. This situation is usually caused by inconsistent encoding or the character set is not set. Solving the problem of Chinese garbled characters in PHP web pages requires starting from many aspects. The following are some common solutions and specific code examples. Set the PHP file encoding: First make sure that the encoding of the PHP file itself is UTF-8. You can set the UTF-8 encoding when saving in the editor, or add the following code to the header of the PHP file to set the encoding: &l

Methods to solve the problem of Chinese garbled characters in Linux system Methods to solve the problem of Chinese garbled characters in Linux system Feb 19, 2024 am 09:22 AM

The problem of Linux Chinese garbled characters is a problem that many Chinese users often encounter when using Linux systems. The main reason for garbled Chinese characters is that the default character encoding used by the Linux system is UTF-8, but some software or applications may not be compatible with UTF-8 encoding, causing Chinese characters to not be displayed correctly. There are many ways to solve this problem. Several common solutions will be detailed below and specific code examples will be provided. Modify the terminal character encoding settings: The terminal character encoding settings determine whether the terminal can correctly