Journal win forms text box user input question
Journal win forms text box user input question
(OP)
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
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





RE: Journal win forms text box user input question
A quick google search resulted in this:
https://stackoverflow.com/questions/8964748/detect...
www.nxjournaling.com
RE: Journal win forms text box user input question
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)