block BACK KEY
-
Hi All, I want to block BACK KEY of WM Smart phone in my entire application. What i am trying to do is my application should not get Minimized if I press WM Smart phone's Back Key. Please help me. Thanks in Advance.
Pavan Pareta
-
Hi All, I want to block BACK KEY of WM Smart phone in my entire application. What i am trying to do is my application should not get Minimized if I press WM Smart phone's Back Key. Please help me. Thanks in Advance.
Pavan Pareta
You didn't mention what language/technology you are using, so I will assume this is a .Net program. You need to add an event handler to the
KeyPress
event and in the event handler check to see if the KeyChar on the event args object isKeys.Escape
. If it is then set theHandled
member of the event arg to true.Joel Ivory Johnson
Meet my dev team: RDA Architecture Evangelist Team Blog
My site: J2i.net
Twitter: J2iNet
-
You didn't mention what language/technology you are using, so I will assume this is a .Net program. You need to add an event handler to the
KeyPress
event and in the event handler check to see if the KeyChar on the event args object isKeys.Escape
. If it is then set theHandled
member of the event arg to true.Joel Ivory Johnson
Meet my dev team: RDA Architecture Evangelist Team Blog
My site: J2i.net
Twitter: J2iNet
Thanks J2i It's help full for me.
Pavan Pareta