I have a DataGridView set up with the following columns:
Teacher, Subject, Date, Period.
After a lot of Googleing I can see there are a few ways to add data to the grid programmatically, with each one differing to another quite extensively.
I wanted your opinion on how I should go about this, considering I am going to be adding data from a text file line-by-line (using ":" as a delimiter) and I want each line to have its own row, so it's going to be in a loop.
Thanks.