Hi there, I am creating a application for a touch screen computer/till of course, this means that I have to make a keyboard in my application so you don't have to mess around getting the keyboard out. I have multiple textbox's on my application and would like to know how to make the keys type into the textbox that is focused.
Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
NameTextBox.Text = NameTextBox.Text & "M"
End Sub
^ At the moment I was using this but this only puts the letters into the NameTextbox and also the NameTextbox doesn't appear to be focused..
How would I get the keys to type into the textbox that is focused?