Multi-column ComboBox for WinForms DataGridView (VB.NET).
$ dotnet add package DataGridMultiColumnComboBoxLibCustom WinForms DataGridView ComboBox dengan dukungan multi kolom.
ColumnWidths)DropDownWidth)Dim col As New DataGridMultiColumnComboBox.DataGridViewMultiColumnComboBoxColumn()
col.HeaderText = "Organisasi"
col.DataSource = dtOrgList
col.DisplayMember = "org_kode"
col.ValueMember = "org_kode"
col.ColumnNames = {"org_kode", "org_dept", "org_bag", "org_subbag"}
col.ColumnWidths = {120, 200, 200, 200}
col.DropDownWidth = 750
DataGridView1.Columns.Add(col)