i have created an on screen Virtual keyboard what i did was i found the handle for the web browser form and directly used the send keys fn:- IntPtr webHandle = FindWindow("WindowsForms10.Window.8.app3", "Web Browser"); if (webHandle == IntPtr.Zero) { MessageBox.Show("Form is not running."); return; SetForegroundWindow(webHandle); SendKeys.Send("{a}"); } The problem is that no keys are going inside WebBrowser control. Please help me urgently. Thankyou Arun Appukuttan
arun_appu
Posts
-
Virtual Keyboard help plz -
namespace helpwhere can i have the namespace Microsoft.PointOfService the link for this namespace explanation from msdn is http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ccl/html/T\_Microsoft\_PointOfSer vice_PosKeyboard.asp plz help me urgently regards Arun Appukuttan
-
namespace->Microsoft.pointofservicewhere can i have the namespace Microsoft.PointOfService the link for this namespace explanation from msdn is http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ccl/html/T\_Microsoft\_PointOfSer vice_PosKeyboard.asp plz help me urgently regards Arun Appukuttan
-
Custom BrowserHow can i Create a Custom Browser with Internet Browsing facility.it must also have the options for Blocking some websites. for the above requirement which type of application(a windows application or an ASP.net application)must i use. i want to do the whole thing in C#.net