Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
古いVB6コードを調べていると、次のようなステートメントに出くわします-
TempArray() = StrConv(PassedString, vbFromUnicode)
これは何を意味するのでしょうか?
Unicode 文字列 (VB の文字列はすべて Unicode) を受け取り、非 Unicode プログラムの現在のシステム コードページを使用してバイト配列に変換します。
そのコードページにない文字は、疑問符 ( ?) に置き換えられます。
?