My datagridview flickers and is very slow while loading. I reflectored the datgridview from Microsoft and discovered that there is a back buffer property which is not visible f
How about trying a List and adding it programmatically to a multiline textbox. That is very fast and efficient.
Dim tbox As New TextBox
Dim bobs As New List(Of String)
bobs.Add("Williams")
bobs.Add("Stephens")
bobs.Add("Thomas")
bobs.Add("Brown")
bobs.Add("Knauff")
For Each str As String In dinosaurs
tbox.Text &= str & vbNewLine ' &= ensures you add the str not overwrite the previous data/vbnewline works as a cr(carriage return) and an lf(line feed)'
Next