Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共3 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:此段代码有问题

1楼
lpxjw_zyl 发表于:2010/5/10 10:10:00
for i as Integer = 0 to DataTables("中招报名").Datarows.count - 1
    for each dc as datacol in DataTables("中招报名").Datacols
        if DataTables("中招报名")(i)(dc.name) <> DataTables("中招报名5月10日")(i)(dc.name) then
            DataTables("中招报名5月10日")(h)("核对情况") = "数据有误"
            exit for
        end if
    next
next
2楼
yangming 发表于:2010/5/10 10:29:00

for i as Integer = 0 to Tables("中招报名").rows.count - 1
    for each dc as col in Tables("中招报名").cols
        if Tables("中招报名")(i,dc.name) <> Tables("中招报名5月10日")(i,dc.name) then
            Tables("中招报名5月10日")(h,"核对情况") = "数据有误"
            exit for
        end if
    next
next

 

注意:红色的h是不是数字,不知道你是否在其它代码中定义过

这样才是正确的

 

for i as Integer = 0 to Tables("中招报名").rows.count - 1
    for each dc as col in Tables("中招报名").cols
        if Tables("中招报名")(i,dc.name) <> Tables("中招报名5月10日")(i,dc.name) then
            Tables("中招报名5月10日")(i,"核对情况") = "数据有误"
            exit for
        end if
    next
next

[此贴子已经被作者于2010-5-10 10:36:40编辑过]
3楼
lpxjw_zyl 发表于:2010/5/10 16:32:00

谢谢

共3 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02734 s, 2 queries.