Has anyone ever used System.Windows.Forms.WebBrowser.PreProcessControlMessage? And what did you use it for?
Has anyone ever used System.Windows.Forms.WebBrowser.PreProcessControlMessage ? And what did you use it for?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That is not a method on
System.Windows.Forms.WebBrowser, it just inherited it from theSystem.Windows.Forms.Controlbase class.You’d only need to call it if you implement your own control and override the WndProc handling, it allows you to forward keyboard input to other controls out of order. If you look in Reflector you can see it’s used for ActiveX and OLE container implementations.