Hi all
i try to change the keyboard layout and languge in multilanguages (English and another Dutch-dir=ltr- or Hebrew-dir=rtl-) web pages, its usually changed by Alt+Shift ,KeySend method can control applications but can be usefull but about web page i have no idea i could not find anything can help me, i wish someone can help me here or adivise me how can i do it, a chinish web programmer has a solution in java but did not work for me and i take a look at MSDN :
' Clicking Button1 causes a message box to appear.
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
MessageBox.Show("Click here!")
End Sub
' Use the SendKeys.Send method to trigger the Button1 click event
' and display the message box.
Private Sub Form1_DoubleClick(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles MyBase.DoubleClick
' Send the enter key; since the tab stop of Button1 is 0, this
' will trigger the click event.
SendKeys.Send("{ENTER}") ' or % for alt and... as can find out in its table
End Sub
but it can control win base applications and advised in web app. i read in a forum some one tried to manipulate the codes
to use it in web application .net i mean asp.net but...nothing
any sugesstion , idea, advive can help me
BR
SAS