如何在datagridview单元格中显示多个值
我不知道是否可以将访问表中的不同值显示为单个datagridview单元格。 例如。 如果表xyz包含这样的数据
col1 col2 col3 col4 Col5
B1 P1 P1 P2 P1 / P1
B2 P1 P2 P3
B3 P1 P2 P3 B4
P2 P2 P3 P2 / P2
我希望我清楚我想知道什么? 如果这是可能的,我怎么能做到这一点?
关心所有。
如果您只想显示数据,则需要转换ToString
,然后连接所需列的值。
只需创建一个查询( Access query
):
SELECT col1
, col2
, col3
, col4
, CStr(col2) + '/' + CStr(col3) AS col5
FROM yourTable
链接地址: http://www.djcxy.com/p/68833.html