I want to read data from a text file and show in a table (much like the DataGrid / DataGridView classes). The txt file must be local and not sql based (like the mentioned classes).
Doing this in C# windows form.
Any ideas?
If you have any questions I will edit this question as needed.
EDIT:
This seems to work:
this.DataGridView1.Rows(1).Cells(1).Value = stringReader;