vb宏 - 我想阅读Excel单元格中的印地语单词,并通过编写宏来显示在消息框中。
我尝试使用英语单词显示在消息框中,但不是印地语单词。
答案 0 :(得分:1)
我在印地语中搜索 namaste 。谷歌给了我namaste到नमस्ते的翻译。那被复制到Excel的A1单元格中。
在Excel VBA中,创建一个模块并键入以下内容:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ListView
android:id="@+id/list_header_detail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="16dip"
android:paddingBottom="16dip"
android:clipToPadding="false"
android:divider="@null"/>
</LinearLayout>
您将看到一个带有नमस्ते的消息框。文字可能看起来很小。请注意,VBA中的MsgBox不支持Unicode,因此您将无法使用MsgBox显示各种语言的信息。
信用:{{3}}