Hi all,
my datagrid gets its data from a dataview:
Dim catView As DataView = New DataView(ds.Tables("DMFA_A
CRF_NT_ONT
V"))
grdSendFromFile.DataSource
= catView
The dataset / datagrid has some 2000 rows and 8 columns.
One of these columns holds a value from the database : either 1, 2 or 3
Instead of just showing 1, 2, 3 in the corresponding column in the grid, I want to 'enumerate' these values.
For example : a '1' would have "Type One" , '2' would have "Type two" and so on
Any suggestions?
Start Free Trial