How to set the 'Insert New Row' as First Row in DataGridView
Pada posting kali ini akan dibahas tentang "How to set the 'Insert New Row' as First Row in DataGridView"
"How to set the 'Insert New Row' as First Row in DataGridView" biasanya digunakan untuk memperlihatkan urutan antrian secara visual.
Dibawah contoh skrip untuk posting "How to set the 'Insert New Row' as First Row in DataGridView"
Recommended Reading:
Get Publish Version in VB.NET OneClick Deployment
Semoga posting artikel tentang "How to set the 'Insert New Row' as First Row in DataGridView" diatas dapat bermanfaat.
Salam,
"How to set the 'Insert New Row' as First Row in DataGridView" biasanya digunakan untuk memperlihatkan urutan antrian secara visual.
Dibawah contoh skrip untuk posting "How to set the 'Insert New Row' as First Row in DataGridView"
Dim dtLog As New DataTable()
dtLog.Columns.Add("Log", GetType(String))
oDr = dtLog.NewRow
Dim nInt As Int16 = 1
oDr("Log") = (nInt).ToString
dtLog.Rows.InsertAt(oDr, 0)
DgLog.DataSource = dtLog
Recommended Reading:
Get Publish Version in VB.NET OneClick Deployment
Semoga posting artikel tentang "How to set the 'Insert New Row' as First Row in DataGridView" diatas dapat bermanfaat.
Salam,