Untitled
By: a guest | Apr 28th, 2010 | Syntax:
VB.NET | Size: 0.38 KB | Hits: 116 | Expires: Never
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim row0 As String() = {"3/5/1970", "Matthew's Birthday"}
With Me.DataGridView1.Rows
.Add(row0)
End With
With Me.DataGridView1
.Columns(0).DisplayIndex = 0
End With
End Sub
End Class