以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 这个定义不成立么? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=73083) |
-- 作者:jinzhengbe -- 发布时间:2015/8/12 8:38:00 -- 这个定义不成立么? Dim dr2 As DataRow = DataTables("chuahuo").DataRow
上面这个定义不成立么? 应该怎么改你额? |
-- 作者:foxor -- 发布时间:2015/8/12 8:53:00 -- 必须指明引用的行: Dim dr2 As DataRow = DataTables("chuahuo").DataRows(n)
|
-- 作者:大红袍 -- 发布时间:2015/8/12 9:05:00 -- 汗,学这么久,最基本的语法都不会。
Dim dr2 As DataRow = DataTables("chuahuo").DataRow(1)
------------
Dim dr2 As DataRow = DataTables("chuahuo").Find("第一列 = \'123\'")
|