本文介绍了在datagridview中选择行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Datagridview1

Datagridview1

DUE_DATE    OPB
10/20/14    1000
11/20/14    2000
12/20/14    3000
1/20/15     4000
2/20/15     5000
3/20/15     6000



Datagridview2


Datagridview2

MONTH_APPLIED    OPB
                 1500
                 3000
                 4500
                 6000



我需要从 Datagridview1 中选择 DUE_DATE 并将其放入 MONTH_APPLIED Datagridview2



输出应该是这样的


I need to select the DUE_DATE from Datagridview1 and put it in MONTH_APPLIED to Datagridview2

the output should be like this

MONTH_APPLIED    OPB
10/20/14         1500
12/20/14         3000
1/20/15          4500
3/20/15          6000




If DataGridView2.Rows(0).Cells("OPB").Value > DataGridView1.Rows(0).Cells("OPB").Value Then
'what code should i put to get the output
            ElseIf DataGridView2.Rows(0).Cells("OPB").Value < DataGridView1.Rows(0).Cells("OPB").Value Then
'what code should i put to get the output
            End If

推荐答案


这篇关于在datagridview中选择行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-12 01:19