Disallow MBCS sets in VB text box
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
Hi How do i disallow a user from entering MBCS characters (Japanese Kanji) from entering in text box. He/she should only be allowed to enter SBCS (KataKana) in the text box. Help!..
-
Hi How do i disallow a user from entering MBCS characters (Japanese Kanji) from entering in text box. He/she should only be allowed to enter SBCS (KataKana) in the text box. Help!..
USe StrCon() function ofVB. USe it to convert to any type. i.e VBWide,VBNarrow,VBKatakana,VBHiraGana. etc.. USeful-function,if u get it right. else VB stores strings in UNICODE format which takes 2bytes / character. So difficult to recognise single/multibyte otherwise. CIAO