问题描述
我需要在网格中显示我从数据库中获得的一些值,如下所示:
名称ScoreMaths ScorePhysics
A 1 5
B 2 6
C 3 7
D 4 8
所以我为我的数据表中的每个值添加了新行,并将网格源设置为数据表。
但我现在退出了
名称ScoreMaths ScorePhysics
A 1
B 2
C 3
D 4
A 5
B 6
C 7
D 8
我该如何解决这个问题?
如果您需要更多说明,请告诉我。
I need to show some values which i got from Database in my grid as below,
Name ScoreMaths ScorePhysics
A 1 5
B 2 6
C 3 7
D 4 8
So i added new rows for each values in my data table and set the source of grid as data table.
But am getting out put as
Name ScoreMaths ScorePhysics
A 1
B 2
C 3
D 4
A 5
B 6
C 7
D 8
How can i solve this issue?
Please let me know if you need any more clarifications.
推荐答案
这篇关于我如何安排我的网格视图?我需要显示我在网格中从数据库获得的一些值,没有重复。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!