Software Development Network>> Windows Forms>> Disable Keyboard activity
Can you elaborate a little. Are you talking abuot Control Level or Form Level Or......... System Level .
Best Regards,
This is a great find!
Excellent job!
See this if it helps:
http://www.codeproject.com/cs/system/CSLLKeyboard.asp
in the textbox control use the keyPress event
private
In a comboBox you use the KeyDown Event. Similar code...
Disable Keyboard activity
rajan nair
Can you elaborate a little. Are you talking abuot Control Level or Form Level Or......... System Level
.
Best Regards,
GustavoPollitzer
This is a great find!
Excellent job!
Robert Barnes
See this if it helps:
http://www.codeproject.com/cs/system/CSLLKeyboard.asp
Best Regards,
Atul Bahl
Maaloul
in the textbox control use the keyPress event
private
void TextBox1_KeyPress(object sender, KeyPressEventArgs e){
e.Handled = true;
}
In a comboBox you use the KeyDown Event. Similar code...