Nastavte si do komponenty DataGridView příslušný počet sloupců a pojmenujte si je jak je libo. Pro nastavení hodnot stačí tento kód:
For y As Integer = 0 To pole.GetUpperBound(0)
DataGridView1.Rows.Add()
For x As Integer = 0 To pole.GetUpperBound(1)
DataGridView1.Rows(y).Cells(x).Value = pole(y, x)
Next
Next
|