Best technique to store data locally

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

    Best technique to store data locally

    Hi,

    In my application I have a list view and a tree view.

    The tree view allows the user to select different nodes, and then the
    listview needs to display items associated with treeview node. Each treeview
    node will have different listview items which the user can add and delete
    to.

    The concept is similar to explorer, when you click on a folder you see the
    files in that folder...

    I am wondering what is the best way to 'store' the listview items for each
    treeview node, so that when the user returns to the node again, the proper
    data is displayed. I don't want to have a database just to hold this data.

    Thanks



  • Andy B

    #2
    Re: Best technique to store data locally

    Sounds like you should look into xml then.


    "Aussie Rules" <aussie@nospam. comwrote in message
    news:e44UHNIxIH A.4876@TK2MSFTN GP02.phx.gbl...
    Hi,
    >
    In my application I have a list view and a tree view.
    >
    The tree view allows the user to select different nodes, and then the
    listview needs to display items associated with treeview node. Each
    treeview node will have different listview items which the user can add
    and delete to.
    >
    The concept is similar to explorer, when you click on a folder you see the
    files in that folder...
    >
    I am wondering what is the best way to 'store' the listview items for each
    treeview node, so that when the user returns to the node again, the proper
    data is displayed. I don't want to have a database just to hold this data.
    >
    Thanks
    >
    >
    >

    Comment

    • Cor Ligthert[MVP]

      #3
      Re: Best technique to store data locally

      I assume this one.

      Isolated storage



      Cor

      "Aussie Rules" <aussie@nospam. comschreef in bericht
      news:e44UHNIxIH A.4876@TK2MSFTN GP02.phx.gbl...
      Hi,
      >
      In my application I have a list view and a tree view.
      >
      The tree view allows the user to select different nodes, and then the
      listview needs to display items associated with treeview node. Each
      treeview node will have different listview items which the user can add
      and delete to.
      >
      The concept is similar to explorer, when you click on a folder you see the
      files in that folder...
      >
      I am wondering what is the best way to 'store' the listview items for each
      treeview node, so that when the user returns to the node again, the proper
      data is displayed. I don't want to have a database just to hold this data.
      >
      Thanks
      >
      >
      >

      Comment

      Working...