以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 集合出错 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=135484) |
-- 作者:lfz123 -- 发布时间:2019/5/27 19:10:00 -- 集合出错 窗口的BeforeClose代码如下: \'提取工程名称 Dim strs As List (of String) = dt.GetValues("工程名称","申请单号 = \'"& dh & "\'") MessageBox.Show(strs.count) MessageBox.Show(strs(0)) MessageBox.Show(strs(1)) If strs.Count = 0 Then Return ElseIf strs.Count = 1 Then Forms("申请单录入").Controls("TextBox4").value = strs(0) 结果出不来 Else Forms("申请单录入").Controls("TextBox4").value = "多个工程" End If 关闭时还有个运行错误提示如下:
|
-- 作者:有点蓝 -- 发布时间:2019/5/27 20:25:00 -- 去掉这2句代码 MessageBox.Show(strs(0)) MessageBox.Show(strs(1)) |