指定された文字が、英字または数字であるかどうかを判断する
Declare Function IsCharAlphaNumeric Lib "user32.dll" Alias "IsCharAlphaNumericA" _
(ByVal cChar As Byte) As Long
Declare Function IsCharAlphaNumeric Lib "user32.dll" Alias "IsCharAlphaNumericA" _
(ByVal cChar As Byte) As Integer
BOOL IsCharAlphaNumeric(
TCHAR ch
);
引数
cChar
対象の1文字戻り値
指定した文字が英字または数字 0以外備考
指定した文字が英字でも数字でもない 0
拡張エラー情報を取得するには、GetLastError()関数を使う