I am developing a Online Learning Project in ASP.net using C sharp coding, If a user clicks start button i making ppt to run automatically for learning via coding but i want to block the some of the keyboard inputs while learning in online and if the user close the form then all keyboard inputs should work properly, so can any one suggest me , how to block some keyboard inputs in form load. Thanks in Advance .

Sunny SharmaPosted Oct 3, 2013, 12:18 PM
Handle the KeyPress event of Form and other controls if required in order to achieve what you want.
Refer to this MSDN Documentation for example:
http://msdn.microsoft.com/en-us/library/ms171538.aspx
HTH:)