Dear I want to change language which is being changed by pressing Crt+Shift+1. now i want when user got focus on textbox 1 then language should be automatically changed. User should not press Ctr+Shift+1 but vb.
Printable View
Dear I want to change language which is being changed by pressing Crt+Shift+1. now i want when user got focus on textbox 1 then language should be automatically changed. User should not press Ctr+Shift+1 but vb.
Please do not create multiple post for the same topic....
http://www.vbforums.com/showthread.php?t=564459
Instead of using
put the code in theCode:Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
Call ShowKey
End Sub
and where I am displaying the message box in that code, do what you want to do :)Quote:
Private Sub Text1_GotFocus()
End Sub