how to insert DataGridViewComboBoxColumn in DataGridView

  • Thread starter Thread starter Apostolos Doudakmanis
  • Start date Start date
A

Apostolos Doudakmanis

Guest
I have a database in MySQL with a Table which named Pin11

This table have some fields

`id` INTEGER NOT NULL,
`f1` VARCHAR(30),
`f2` INTEGER,
`f3` INTEGER,
`f4` INTEGER, .....

Especially the field f2 have 4 values : -1, -2, 1, 2 = (negative debt, negative credit, debt, credit)

How will i make the DataGridView to show the column f2 as DataGridViewComboBoxColumn and the number values to change to text?

Continue reading...
 
Back
Top