Hi, I have a question about how to send my records from a file with txt extension to a DataGridView work with C ++ in Visual Studio 2012
I enclose an example of how I have the txt file
Code, Name, Phone, Mail, Address
01, Samuel, 222244444, [email protected], city
And I save all these fields to file.txt with textbox and keep them line by line with
WriteLine (Here my textbox with its respective variables and delimiter , );
Example: WriteLine (code-> ToString () + ",") and so on with the others.
The only thing I can not find is to send all my information from the file to the datagridView with those data saved previously. And the other also at the same time, how to add the respective headings of each column, that is, Code, Name, Phone, Mail, Address *
Thank you very much in advance