I have a listbox which is populated using csv file names from a directory. The user will then select one of these files and the csv will populate a datagrid. Using the datagrid, they can then edit the data. At the end of the day, they will then export this data to a text file or database so I can work with the edited data.
Since the user can select one file...do their edits...and then choose another file...then maybe even go back to the original file, would it be easier to read the csv into separate datatables within a dataset and then populate the datagrid or read the csv to create a sql database and use that to populate the datagrid? This app would be running on a mobile device so I figured creating a database onto the storage card on the fly would be more efficient. Hopefully all of that makes sense..and thanks for any help. I havent programmed since college, so I'm trying to get the hang of things again.
Since the user can select one file...do their edits...and then choose another file...then maybe even go back to the original file, would it be easier to read the csv into separate datatables within a dataset and then populate the datagrid or read the csv to create a sql database and use that to populate the datagrid? This app would be running on a mobile device so I figured creating a database onto the storage card on the fly would be more efficient. Hopefully all of that makes sense..and thanks for any help. I havent programmed since college, so I'm trying to get the hang of things again.