vote up 1 vote down star

Good morning,

I am the developer of a medium sized PDA application that will be used out on the streets. The PDA will contain some vaguely sensitive data (names and addresses, etc). The encryption on the mobile database is already handled, however if someone got hold of the PDA whilst it was logged in they could happily go through the data until the battery died or they closed the application and had to log in again.

When the users access the PDA application they need to enter their username and PIN number. Version 1 of this software had an event hooked into every button in the system so that when the button was pressed, it updated a variable called LastActionTime. A timer ran on the main form and if that LastActionTime was more than 10 minutes ago then the system would throw up the login form again until the previous user/admin logged back in again (just like the windows lockout screen).

This worked fine... in a sense... the problem with that is that it was only handling buttons and wasn't handling the other controls, like ListViews, PictureBoxes, etc.

Is there any good way of achieving this? For example, is there a way I could extend a Windows Form Class to handle every single event and update that variable accordingly? Or can I do something windows-esque that would handle every single mouse event on the form?

To be completely concise, what I want to achieve is that when the PDA screen/buttons have not been touched for 10 minutes, the PDA will know this and allow me to fire my lockout method.

Any thoughts, help and guidance would be much appreciated.

Edit: I am using Compact Framework 2.0 on Windows Mobile 6.0, however the function needs to work on Windows Mobile 5.0 and above.

flag

Consider giving more details about your platform (Windows Mobile 5 or 6, Windows CE) – kgiannakakis Dec 8 '08 at 12:05

4 Answers

vote up 1 vote down check

One possible solution is to rely on the PDA's entering power idle state. You can register a notification for this using OpenNETCF.WindowsCE.PowerManager.PowerIdle Event. In fact it is a good idea to take into account power management considerations. You can't expect your PDA to be in the same state all the time.

Another solution would be to monitor the inactive event of the input driver (See this link). However, this solution is very device specific.

Unfortunately there is no way in Windows CE to register a global mouse event hook.

The above were OS solutions. There is not an easy way to do it with extending Windows Form and Control classes. Probably you would need to extend all the controls you would be using. The easiest solution would be to implement the GetFocus method for all your controls and the form. You could reset your counter there.

By the way, in a desktop environment this can easily achieved with GetLastInputInfo.

link|flag
vote up 0 vote down

Not sure this will work in CF, but:

http://www.codeproject.com/KB/miscctrl/Application_Idle.aspx?display=Print

link|flag
vote up 0 vote down

Thanks for the help. Unfortunately the user has to be able to specify the timeout time from an MIS system (sorry I should have mentioned that!). So what I've done is, I hooked in the power up event in OpenNetCF. On power up my app will always lock. This will probably never happen, but it'll help for when the user sets a ridiculous timeout time.

In the end, I created a new class that uses the System.Windows.Form class as its base class.

On instantiation of the class, I call a method that wires up the click, textchanged and gotfocus events of every control on the form. That shared event for every control updates a last action time in my session class. The session then controls the life of the timeout and locking itself keeping it nicely contained and clean.

Thanks for the help.

link|flag
vote up 0 vote down

Check this post out:

http://social.msdn.microsoft.com/Forums/en-US/netfxcompact/thread/906b016d-f1ee-4b3e-b3df-1e3a6fea282a/

I wrestled with the same problem, and ended up using Application.AddMessageFilter to get the appropriate results. That thread eventually contains a link to a sample project I wrote showing the inactivity timer working, including shutting down subdialogs if necessary to return to a main window screen.

David

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.