Hello.
My old app in VB6 reads a textfile and then inputs each line of that file in a row of a MSHFlexGrid object. I know how to read the content file, but I don't know how to fill the DataGrid with my textfile content.
How can I do this?
Thank you
Printable View
Hello.
My old app in VB6 reads a textfile and then inputs each line of that file in a row of a MSHFlexGrid object. I know how to read the content file, but I don't know how to fill the DataGrid with my textfile content.
How can I do this?
Thank you
Ok, I got it!
Here“s the code:
Code:'...
Me.DataGridView1.Rows.Add(string)
'...