当我加载datagridview
datagridview
内容如下
列Payment ID
我希望ID类似于P00001
我知道我必须使用掩码\P99999
,但问题是如何?任何帮助将不胜感激提前感谢..我导入数据的access database
中的输入掩码为\P99999;;#
答案 0 :(得分:1)
E.g。
Dim table As New DataTable
With table.Columns
.Add("Formatted", GetType(Integer))
.Add("Unformatted", GetType(Integer))
End With
With table.Rows
.Add(1, 1)
.Add(2, 2)
.Add(3, 3)
End With
Me.DataGridView1.DataSource = table
Me.DataGridView1.Columns(0).DefaultCellStyle.Format = "\P00000"