ChrW Function [VBA]

Returns the Unicode character that corresponds to the specified character code.

Varningssymbol

Denna funktion eller konstant aktiveras med uttrycket Option VBASupport 1 placerat före den körbara programkoden i en modul.


Syntax:

ChrW(Expression As Integer)

Returvärde:

String

Parametrar:

Expression: Numeric variables that represent a valid 16 bit Unicode value (0-65535). An empty value returns error code 5. A value out of the range [0,65535] returns error code 6.

Felkoder:

5 Felaktigt proceduranrop

6 Spill

Exempel:

Sub ExampleChrW

 ' This example inserts the greek letter Alpha and Omega in a string.

 MsgBox "From "+ ChrW(913)+" to " + ChrW(937)

 ' The printout appears in the dialog as: From Α to Ω

End Sub