, . rpetrich , , , . API TCHAR ( WCHAR), Long. , HFFFF. , , Integer Long . , & HFFFF & ?
, UnicoWS API Win9X. , UnicoWS.dll, , , . , , VB6 , Win9X, .
Option Explicit
Private Declare Function IsCharAlphaW Lib "unicows" (ByVal WChar As Integer) As Long
Private Function IsLetter(Character As String) As Boolean
IsLetter = IsCharAlphaW(AscW(Character))
End Function
Private Sub Main()
MsgBox IsLetter("^")
MsgBox IsLetter("A")
MsgBox IsLetter(ChrW$(&H34F))
MsgBox IsLetter(ChrW$(&HFEF0))
MsgBox IsLetter(ChrW$(&HFEFC))
End Sub