Tracking Changes - Windows Forms Application

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • OmarOthman
    New Member
    • Nov 2006
    • 3

    #1

    Tracking Changes - Windows Forms Application

    Dear All,
    I have a common problem but I just can't figure out the required keywords to search for a solution. Normally, when a user clicks "Save" in an application, everything is saved. But when he/she changes anything, I must track it to know the application is now not saved. It's simple to just put a boolean everywhere in the code, but I don't think this is the smartest way to do it. Please if anybody knows about a smarter approach, it'll be highly appreciated...
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    One way would be to log the changes in a database table or even a simple log file. That way you can track and report independently of the application...

    Hope that this helps.

    Comment

    • radcaesar
      Recognized Expert Contributor
      • Sep 2006
      • 759

      #3
      hi,
      There is a logging framework available in codeproject.

      Try that

      http://www.codeproject .com/csharp/nspring.asp

      :)

      Comment

      Working...