c# - how do i disable key repeat in Windows mobile or MC67 -


i'm using motorola mc67 windows mobile 6.0 , writing in c# compact framework.

i want disable key repeats, if press long "enter" example, won't more 1 "enter" press. i've searched motorola manual, , tried advice given here, doing:

registry.setvalue(@"hkcu\controlpanel\keybd", "repeatrate", "1000000"); 

but no use.

can me?

just clear: have access change registry code, after change rate max possible, ignore value in registry.

if key software button, can disable button:

private void btnok_clicked(object sender, eventargs e) {   btnok.enabled = false;   try {     // code here   } {     btnok.enabled = true;   } } 

if physical key on device, don't know how go in , set "click rate" (or whatever called), try adding lock around routine.

private object m_lock = new object();  private void textbox_changed(object sender, eventargs e) {   lock (m_lock) {     // code here   } } 

i don't know if or not, though. can't test, because devices here not seem have same issue.


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -