How to do permanent changes at runtime

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MaxNad

    How to do permanent changes at runtime

    Hey,

    I started C Sharp not long ago in scool and.. hum... being bored by the slowlyness of the classes, im tryng to do more stuf...

    Im tryng to save changes to the code AT RUNTIME. Let say we have a combobox with groups in them, i would like the user to be able to permanently change these group names...

    Plz help :)
    Thx
  • Subin Ninan
    New Member
    • Sep 2010
    • 91

    #2
    Make use of configuration files or xml files to store application settings. For example, if user checks a checkbox, save the value of that checkbox in xml and code your application in such a way that when next time it starts, it reads the value of checkbox from xml file and sets its property accordingly.

    Comment

    • ThatThatGuy
      Recognized Expert Contributor
      • Jul 2009
      • 453

      #3
      You can also try the previous reply.. by Subin Ninan

      Alternatively you can use MS Access or SQL Lite as a backend database for storing and retrieving user input

      Comment

      • Plater
        Recognized Expert Expert
        • Apr 2007
        • 7872

        #4
        I think you might find XAML interesting.

        Comment

        Working...