以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 怎样获取 .SQLGetValues 的记录数 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=174078) |
-- 作者:fvcfox -- 发布时间:2021/12/30 17:09:00 -- 怎样获取 .SQLGetValues 的记录数 DataTables("工资库").SQLGetValues("姓名","年=" & e.Form.Controls("ComboBox1").text " and 月=" & e.Form.Controls("ComboBox2").text) |
-- 作者:有点蓝 -- 发布时间:2021/12/30 17:16:00 -- http://www.foxtable.com/webhelp/topics/2909.htm Dim Products As List(Of String) = DataTables("工资库").SQLGetValues("姓名","年=" & e.Form.Controls("ComboBox1").text " and 月=" & e.Form.Controls("ComboBox2").text) msgbox(Products.count)
|