Hibernate an Application

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ryan

    Hibernate an Application

    Hello Everyone,

    We are writing a medical application that due to regulations needs to log
    itself out after a certain amount of inactivity. Using timers we can
    determine inactivity, however we want to be able to save the application's
    state or hibernate it. Any ideas?

    Thanks.


  • Jim Hubbard

    #2
    Re: Hibernate an Application

    Why not simply have the application hide the current screen when a timeout
    has been reached and show a login screen instead?

    No nasty little state files or any of the associated code (which can be
    quite substantial).

    Jim Hubbard

    "Ryan" <Ryan@discussio ns.microsoft.co m> wrote in message
    news:D669C475-EA52-4F61-B59D-4FC398BDFB70@mi crosoft.com...[color=blue]
    > Hello Everyone,
    >
    > We are writing a medical application that due to regulations needs to log
    > itself out after a certain amount of inactivity. Using timers we can
    > determine inactivity, however we want to be able to save the application's
    > state or hibernate it. Any ideas?
    >
    > Thanks.
    >
    >[/color]


    Comment

    • Ryan

      #3
      Re: Hibernate an Application

      Jim,

      Thanks for the suggestion, that is the current way I think we have to do
      it. Is there any good examples of using state files to save the application?

      Thanks.



      "Jim Hubbard" wrote:
      [color=blue]
      > Why not simply have the application hide the current screen when a timeout
      > has been reached and show a login screen instead?
      >
      > No nasty little state files or any of the associated code (which can be
      > quite substantial).
      >
      > Jim Hubbard
      >
      > "Ryan" <Ryan@discussio ns.microsoft.co m> wrote in message
      > news:D669C475-EA52-4F61-B59D-4FC398BDFB70@mi crosoft.com...[color=green]
      > > Hello Everyone,
      > >
      > > We are writing a medical application that due to regulations needs to log
      > > itself out after a certain amount of inactivity. Using timers we can
      > > determine inactivity, however we want to be able to save the application's
      > > state or hibernate it. Any ideas?
      > >
      > > Thanks.
      > >
      > >[/color]
      >
      >
      >[/color]

      Comment

      Working...