in my datagrid I have a field that returns a number I would like to format the number:
1 = reconciled
2 = unreconciled
how do I format that field?
heres my tablestyle layout for that field...
VB Code:
Dim grdColStyle10 As New DataGridTextBoxColumn() With grdColStyle10 .HeaderText = "Status" .MappingName = "status_ind" .Width = 50 .Alignment = HorizontalAlignment.Center .ReadOnly = True End With




Reply With Quote