以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]扩展列类型 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=93923) |
-- 作者:yupeng -- 发布时间:2016/12/10 15:04:00 -- [求助]扩展列类型 老师 您好
扩展列类型--我在窗口表--锁定了编辑后--显示不了扩展的点击按钮--所以我想做几个按钮
当我点击QQ按钮时,打开选定行QQ列的QQ,旺旺和网址也是这样,请问要怎样写代码,麻烦您教我一下。谢谢
还有再请教一下您,是不是要写一个判断,当QQ列的内容非空值时才打开。
此主题相关图片如下:010.jpg |
-- 作者:有点蓝 -- 发布时间:2016/12/10 15:12:00 -- 按钮事件 dim r as row = Tables("XXX表").Current if r isnot nothing andalso r.isnull("QQ") = false then
Dim proc As new Process proc.File = "tencent://message/?uin=" & r("QQ")proc.start end if |
-- 作者:yupeng -- 发布时间:2016/12/10 15:52:00 -- 师傅呀 我这个脑子不行 旺旺和网址的代码 弄了半天都出错了 旺旺我装的是千牛,不知道有没有影响。
麻烦再帮我写一下啦 麻烦您了 |
-- 作者:有点蓝 -- 发布时间:2016/12/10 16:32:00 -- 网址参考 dim r as row = Tables("XXX表").Current if r isnot nothing andalso r.isnull("网址") = false then
Dim proc As new Process proc.File = r("网址")proc.start end if 旺旺 dim r as row = Tables("XXX表").Current if r isnot nothing andalso r.isnull("旺旺") = false then Dim proc As new Process proc.File = "http://www.taobao.com/webww/ww.php?ver=3&siteid=cntaobao&status=1&touid=" & r("旺旺") proc.start end if |
-- 作者:yupeng -- 发布时间:2016/12/12 16:20:00 -- 老师 搞定了 谢谢您 |
-- 作者:yupeng -- 发布时间:2016/12/19 11:07:00 -- 老师 您好 以下代码打开图片,运行错误,显示系统找不到指定的文件,请帮我看一下是哪里问题。谢谢您 Dim r As Row = Tables("商品表").Current If r IsNot Nothing AndAlso r.isnull("图片") = False Then Dim proc As new Process proc.File = r("图片") proc.start End If
|
-- 作者:狐狸爸爸 -- 发布时间:2016/12/19 11:42:00 -- Dim r As Row = Tables("商品表").Current If r IsNot Nothing AndAlso r.isnull("图片") = False Then Dim proc As new Process proc.File = ProjectPath & "\\Attachments\\" & r("图片") proc.start End If |