以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]批量打开第二列外部程序 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=193168) |
-- 作者:185723664 -- 发布时间:2024/8/23 9:35:00 -- [求助]批量打开第二列外部程序 下面代码只能打开当前行,求助,窗口按钮批量打开 多行外部程序, Dim r As Row = Tables("表A").Current If r.IsNull("第二列") = False AndAlso r("选择") = True Then \'如果没有输入出生日期 Dim tr As String = r("第二列") Dim Proc As New Process \'定义一个新的Process Proc.File = tr \'指定要打开的网页地址 Proc.Start() End If |
-- 作者:有点蓝 -- 发布时间:2024/8/23 9:40:00 -- 遍历所有行:http://www.foxtable.com/webhelp/topics/1438.htm |