VB.NET Check ColumnType/CellType DataGridViewCheckBoxCell

Lagi coding buat export data di DataGridView ke file Excel. Tapi tipe kolom DataGridViewCheckBoxCell ga ikutan di export. Buat cek apakah ini tipe nya DataGridViewCheckBoxCell ato bukan gimana sih?

Aku nemuin cara ini, I hope it works.
If grdName.Columns(i).CellType.Name <> _
   "DataGridViewCheckBoxCell" Then
   'Export code here
End If

FYI, code itu disimpen didalem loop

Post a Comment

0 Comments