CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 1999
    Posts
    1

    How can I add "Auto save" like Microsoft word



    How can I add "Auto save" like Microsoft word!


    thank you!

  2. #2
    Join Date
    Apr 1999
    Posts
    30

    Re: How can I add "Auto save" like Microsoft word



    This can be done easily, create a separate thread process which fires a message after a certain fixed interval. Call your file save message handler, check the flag m_bModified or something, the dirty document flag in CDocument, if so save. I guess if you want to do it in the same fashioon as word does without a prompt, look into CDocument::OnSaveDocument() code by debugging, there is a way to save it without a prompt.

  3. #3
    Join Date
    May 1999
    Posts
    12

    Re: How can I add "Auto save" like Microsoft word

    Create a timer which will execute a seperate thread to call the save command.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured