Nov 21, 2017 #1 Ehaviv Computer Joined Jul 2, 2003 Messages 1,012 Location IL Hi How I can check that the user input in a textbox is an English alphanumeric text and not other languages alphanumeric text Thankd in advanced
Hi How I can check that the user input in a textbox is an English alphanumeric text and not other languages alphanumeric text Thankd in advanced
Nov 21, 2017 #2 cowski Mechanical Joined Apr 23, 2000 Messages 8,229 Location US One option is to use "validation" in the input form. This means that you basically check the keystrokes as the user is typing and only allow certain characters to be used. A quick google search resulted in this: https://stackoverflow.com/questions/8964748/detect-non-english-keypress-in-vb-net www.nxjournaling.com Upvote 0 Downvote
One option is to use "validation" in the input form. This means that you basically check the keystrokes as the user is typing and only allow certain characters to be used. A quick google search resulted in this: https://stackoverflow.com/questions/8964748/detect-non-english-keypress-in-vb-net www.nxjournaling.com
Nov 21, 2017 Thread starter #3 Ehaviv Computer Joined Jul 2, 2003 Messages 1,012 Location IL Cowski Thank you when I google search for more examples I found this code to switch to english keyboard layout Code: Dim TypeOfLanguage = New System.Globalization.CultureInfo("En") InputLanguage.CurrentInputLanguage = InputLanguage.FromCulture(TypeOfLanguage) Upvote 0 Downvote
Cowski Thank you when I google search for more examples I found this code to switch to english keyboard layout Code: Dim TypeOfLanguage = New System.Globalization.CultureInfo("En") InputLanguage.CurrentInputLanguage = InputLanguage.FromCulture(TypeOfLanguage)