问题描述
如何在反映数据库的datagridview中转换行和列?
例如:
原始数据库
---------------------------
c 10
h 11
w 12
c 12
h 12
w 12
c 9
h 10
w 20
c 21
h 22
w 23
我想像这样在gridview中显示我的数据库:
在网格中表示数据库:
------------------------------
c h w
-----------------
10 11 12
12 12 12
9 10 20
21 22 23
请给我建议一个解决方案....
谢谢
how to transform rows and columns in a datagridview which reflects the database?
e.g:
original database
---------------------------
c 10
h 11
w 12
c 12
h 12
w 12
c 9
h 10
w 20
c 21
h 22
w 23
i want to show my database in the gridview like this:
representing database in grid:
------------------------------
c h w
-----------------
10 11 12
12 12 12
9 10 20
21 22 23
please suggest me a solution....
thanks
推荐答案
这篇关于datagridview中行和列的转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!